<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[[SecurityRatty] tag: asterisk]]></title>
    <link>http://securityratty.com/tag/asterisk</link>
    <description></description>
    <pubDate>Mon, 31 Dec 2007 14:59:51 +0000</pubDate>
    <generator>iRatty Engine</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[How to reveal blocked caller ID info]]></title>
      <link>http://securityratty.com/article/2f8cebc98c334adefe6097890fc1dcd7</link>
      <guid>http://securityratty.com/article/2f8cebc98c334adefe6097890fc1dcd7</guid>
      <description><![CDATA[Let's say for some reason someone has his or her caller ID blocked and is calling you all the time. Let's then say you really want to know who that person is for whatever reason -- not that we'd know...]]></description>
      <content:encoded><![CDATA[Let's say for some reason someone has his or her caller ID blocked and is calling you all the time. Let's then say you really want to know who that person is for whatever reason -- not that we'd know anything about that. Some crafty phreaker types have come up with a way to do this using an enterprise-spec asterisk box and a SIP trunk provider.]]></content:encoded>
      <pubDate>Tue, 22 Jul 2008 00:00:03 +0000</pubDate>
      <category domain="http://securityratty.com/tag/enterprise-spec asterisk box">enterprise-spec asterisk box</category>
      <category domain="http://securityratty.com/tag/crafty phreaker types">crafty phreaker types</category>
      <category domain="http://securityratty.com/tag/sip trunk provider">sip trunk provider</category>
      <category domain="http://securityratty.com/tag/reason">reason</category>
      <category domain="http://securityratty.com/tag/caller">caller</category>
      <category domain="http://securityratty.com/tag/person">person</category>
      <category domain="http://securityratty.com/tag/time">time</category>
      <source url="http://digg.com/security/How_to_reveal_blocked_caller_ID_info">How to reveal blocked caller ID info</source>
    </item>
    <item>
      <title><![CDATA[Security Between Virtual Machines?]]></title>
      <link>http://securityratty.com/article/69916a03ef5251f62e6e3deefe8910ec</link>
      <guid>http://securityratty.com/article/69916a03ef5251f62e6e3deefe8910ec</guid>
      <description><![CDATA[Is there security needed between virtual machines? Some say no, some say yes. I've been out talking to a number of virtualization users and non users on this topic and I'm finding that some say no and...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p>Is there security needed between virtual machines?&nbsp; Some say no, some say yes.&nbsp; I've been out talking to a number of virtualization users and non users on this topic and I'm finding that some say no and some say yes.&nbsp; The users of virtualization technology tend to say yes while others looking at virtualization from the outside tend to say no.&nbsp; Why is this?</p>

<p>Well, I thought I'd blog on my thoughts on this!</p>

<p>You see, in the physical datacenter there is no firewalling between servers plugged into the same switch and because of this some people think, well if its not done in the physical world why should it be done in the virtual world.&nbsp; I believe that its not done in the physical world today because there are no solutions today that embed security into datacenter switches.&nbsp; Should it be done in the physical world?&nbsp; I think so!&nbsp; It never hurts to get security as close as possible to the things you are trying to protect and what better place than the switch port in which the critical asset are connected to.&nbsp; This is why people have HOST BASED FW/IPS ON SERVERS!&nbsp; To get security as close as possible!&nbsp; Is that needed?&nbsp; </p>

<p>So my first response to those that say, security between virtual machines is not needed because its not done in the physical world is:&nbsp; Well, just because people have done things one way for many years doesn't mean there isn't a better way.</p>

<p>Would environments be more secure if there was security between servers?&nbsp; I tend to think so.&nbsp; You see, many of the attacks that are taking place these days are not attacks for fame but attacks for fortune and gone are the days where people just hacked to spread nasty viruses.&nbsp; Its all about the data these days (ie. credit cards, social security numbers, etc).&nbsp; We've all heard about the TJ Max security breach where customer data was compromised and many others like banks that have had credit cards compromised.&nbsp; </p>

<p>How and the heck do you think most of these things happened?&nbsp; Attackers are targeting the datacenter these days.&nbsp; Physical or Virtual.&nbsp; Their gateway into these environments are the Web Front End Servers.&nbsp; Let me say that again.&nbsp; The Web Front End Servers!&nbsp; Hackers get to the data from the web front end server that talks to the database backend server.&nbsp; This useually occurs by something called &quot;Cross-Site Scripting&quot; or &quot;SQL Injection&quot; breaches.&nbsp; </p>

<p>Here is a trival way of how this happens:</p>

<p>A hacker finds a vulnerable web site.&nbsp; He sometimes does this by something called Google Hacking.&nbsp; He uses Google to search for sites that has vulnerabilities on it.&nbsp; Say a web site has some content on one of the pages that says &quot;Powered by Drupal 4.1&quot;.&nbsp; If a hacker knows that Drupal 4.1 software has a vulnerability in it, he can now target all the search results related to this.&nbsp; <a href="http://en.wikipedia.org/wiki/Google_hacking">Click Here for more detail</a>.</p>

<p>Now lets say Drupal 4.1 on a web site has a SQL-Injection vulnerability because the developer of the Drupal software didn't do Form Field Validation properly.&nbsp; A Form field is something you fill out on a web page like a form that asks for the user name and password.&nbsp; User names and passwords to log into the web site are stored on whats called a Database Server.&nbsp; Hmmm... So this means the web server needs to talk to the database server right?&nbsp; Yes!&nbsp; Keep this in the back of our head for now.&nbsp; The hacker enters in &quot;Admin&quot; for the user ID and &quot;password doesn't matter <strong>'or 1=1--</strong>&quot; for the password.&nbsp; And presto!&nbsp; He is logged in to the server as Admin.</p>

<p>The reason he was able to log in is because the web site sends a SQL Database command to the Database server and because the developer of the Drupal software didn't do &quot;Form Field Validation&quot; properly (method of checking for invalid characters like the ' (single quote)&nbsp; symbol), the user was able to bypass the password.&nbsp; Notice the 'OR 1=1 command appended to the password.&nbsp; One does equal one so therefore it will return a TRUE result to the password checker and the OR says use the password typed in (password doesnt matter) OR check to see if one is equal to one.&nbsp; If its true then the password is valid for this user which is Admin.</p>

<p>Now that the user is on the web server, he probably has the ability to connect to the database server or other servers in the network.&nbsp; Why?&nbsp; Because there is connectivity from the web front end to all of the backend servers.&nbsp; He essently can backdoor his way throughout the network. </p>

<p>Another method is for him to append some SQL statement to another SQL statement.&nbsp; Lets say their is a FORM FIELD on the website that collects some information from the database to display it to web site users.&nbsp; It could be entering in the Zip code to find store locations in your area.&nbsp; Instead of putting in the zip code you could put in &quot;95123 'UNION SELECT * FROM credit_card_table--&quot;.&nbsp; The hacker is injecting via the UNION command (which means join one SQL statement with another one) a command that says grab all (via the asterisk) information out the credit card table.</p>

<p>Lastly, the hacker can use the UNION command to write text of his desire to a text file on the database server.&nbsp; He may write some nasty code, tell the database to write the code to a file and then tell the server to execute that file.&nbsp; The code could be used to do a denial of service attack to the other virtual machines or whatever.&nbsp; The possibilities are endless!!</p>

<p>Anyway, these are high level examples.&nbsp; I think you get the point.</p>

<p>The Web Front End Virtual Machine has a need to talk to the Web Back End Virtual Machine and security such as Firewalling, Intrusion Prevention definately needs to be in place to have a higher level of security.</p>

<p>Another reason to have security between virtual machines is because servers are now mobile in the virtual world.&nbsp; They move between trust domains to take advantage of computing resources that may be available on a given piece of hardware.&nbsp; Lets say one PHYSICAL server was hosting database VM's and another PHYSICAL server was hosting file server VM's.&nbsp; The file server VM could VMOTION to the same environment as the database VM's.&nbsp; &nbsp;Now where is your isolation between trust domains or unlike resources?</p>

<p>People should think about this problem in greater detail.&nbsp; I'd love to hear everyones comments as to whether or not they think security between VM's is needed.</p>

<p><a href="http://vmwaresecurity.typepad.com/.shared/image.html?/photos/uncategorized/2008/06/22/creditcardhacker_2.jpg" onclick="window.open(this.href, '_blank', 'width=640,height=400,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img height="312" border="0" width="500" alt="Creditcardhacker_2" title="Creditcardhacker_2" src="http://vmwaresecurity.typepad.com/security_in_the_virtual_w/images/2008/06/22/creditcardhacker_2.jpg" style="margin: 0px 5px 5px 0px; float: left;" /></a>
 </p><br /><br /><br /><br /><p>John Peterson<br />Montego Networks</p></div>
]]></content:encoded>
      <pubDate>Sun, 22 Jun 2008 11:30:57 +0000</pubDate>
      <category domain="http://securityratty.com/tag/web">web</category>
      <category domain="http://securityratty.com/tag/web page">web page</category>
      <category domain="http://securityratty.com/tag/web site sends">web site sends</category>
      <category domain="http://securityratty.com/tag/server">server</category>
      <category domain="http://securityratty.com/tag/file server">file server</category>
      <category domain="http://securityratty.com/tag/database backend server">database backend server</category>
      <category domain="http://securityratty.com/tag/web front">web front</category>
      <category domain="http://securityratty.com/tag/vulnerable web site">vulnerable web site</category>
      <category domain="http://securityratty.com/tag/database server">database server</category>
      <source url="http://feeds.feedburner.com/~r/SecurityInTheVirtualWorld/~3/317542130/security-betwee.html">Security Between Virtual Machines?</source>
    </item>
    <item>
      <title><![CDATA[Interop Las Vegas 2008 - Some Interesting Stats]]></title>
      <link>http://securityratty.com/article/bf27210ce13e64f988cb26cee36c9a0a</link>
      <guid>http://securityratty.com/article/bf27210ce13e64f988cb26cee36c9a0a</guid>
      <description><![CDATA[Ive spent a significant amount of time over the past few days looking at the data that EM7 collected on the network at Interop. A few of the statistics caught my eye and I spent some time talking to...]]></description>
      <content:encoded><![CDATA[<p>I&#8217;ve spent a significant amount of time over the past few days looking at the data that EM7 collected on the network at Interop. A few of the statistics caught my eye and I spent some time talking to Geoff Horne, the Chief Architect of InteropNet about them. Here are the ones that we thought were most interesting.</p>
<p>1) We ended up monitoring 205 nodes in the official show network. They broke down as follows:</p>
<ul>
<li>73 switches (<a target="_blank" href="http://www.enterasys.com" title="Enterasys">Enterasys</a> and <a target="_blank" href="http://www.netgear.com" title="Netgear">Netgear</a>),</li>
<li>4 routers (Enterasys),</li>
<li>28 power distribution units (<a target="_blank" href="http://www.apc.com" title="APC">APC</a>),</li>
<li>5 IDSes (<a target="_blank" href="http://www.enterasys.com/products/advanced-security-apps/dragon-intrusion-detection-protection.aspx" title="Dragon">Enterasys Dragon</a>),</li>
<li>20 environmental monitors (APC),</li>
<li>2 load balancers (<a target="_blank" href="http://www.coyotepoint.com" title="Coyote Point">Coyote Point</a>),</li>
<li>2 <a target="_blank" href="http://www.vmware.com" title="VMware">VMware</a> servers,</li>
<li>5 DNS and DHCP Servers (<a href="http://www.bluecatnetworks.com/" title="BlueCat Networks">BlueCat Networks</a>),</li>
<li>27 IP KVMs (<a target="_blank" href="http://www.avocent.com/DSR_Switches.aspx" title="Avocent DSR">Avocent</a>),</li>
<li>27 IP Power Strips (<a target="_blank" href="http://www.servertech.com" title="Server Technologies">Server Technologies</a>),</li>
<li>1 Master Wireless Controller (<a target="_blank" href="http://www.arubanetworks.com/" title="Aruba Networks">Aruba Networks</a>),</li>
<li>2 IP-PBX Boxes (<a target="_blank" href="http://www.digium.com" title="Digium">Digium Asterisk</a>),</li>
<li>4 Optical Taps (<a target="_blank" href="http://www.netoptics.com" title="NetOptics">NetOptics</a>),</li>
<li>1 <a target="_blank" href="http://www.splunk.com" title="Splunk">Splunk</a> server and</li>
<li>4 external WAN links (<a target="_blank" href="http://www.qwest.com" title="Qwest">Qwest</a>).</li>
</ul>
<p>EM7 pulled data from all of these devices and delivered a single view of the data to the NOC.</p>
<p>2) Uptime for the network was 100%. That isn&#8217;t to say that there weren&#8217;t some device failures, but each of them was handled properly by the redundancy in the network and the show exhibitors and attendees saw no impact from these failures. This is a real testament to the <a target="_blank" href="http://www.thetechstop.net/?p=1199">design and build of the network</a>. It&#8217;s hard enough to <a target="_blank" href="http://www.interop.com/blog/?p=395">build a complicated network in two weeks</a>, but then to keep it up and running 100% of the time in the <a target="_blank" href="http://blog.sciencelogic.com/interopnet-hot-stage-its-history/04/2008">wild west environment </a>that is Interop, is really phenomenal.</p>
<p>3) The average monitored device in the show network didn&#8217;t even hit 10% CPU utilization. This is interesting <a target="_blank" href="http://www.networkworld.com/news/2008/042908-interop-virtual-network.html?fsrc=netflash-rss">because many items were virtualized</a> using vmWare this year and yet, there was still a lot of hardware overhead available. (Maybe we should run <a target="_blank" href="http://folding.stanford.edu/" title="Folding@Home">Folding@Home</a> on the show network?)</p>
<p>4) The show network was busy. By our calculation over 864 gigabytes of data was pulled in and 1.01 terabytes of data were pushed out of the WAN links in the 3 days that the show floor was open. That&#8217;s a sustained 56Mbps average, including off hours. At peak the show network hit about 102Mbps of WAN utilization.</p>
<p>5) In the three days the show floor was open the network and its supporting NOC gear used 600 kwh (kilowatt hours) per day. As a comparison, the town of Rockport, Missouri (1,300 residents) uses about 35,600kwh per day. On a side note, they are <a target="_blank" href="http://www.treehugger.com/files/2008/04/home-residential-wind-power-rock-port-missouri.php" title="Wind Powers Small Town">completely powered by wind power</a> and in fact sell 3,000,000kwh per year back to the local power utility. I&#8217;m thinking next year Interop should bring some wind turbines as part of the InteropNet kit?</p>
<p>Next I&#8217;ll be doing some analysis on the trouble tickets opened. I think it&#8217;ll be interesting to see the kinds of issues that vendors experienced and how quickly the InteropNet staff handled them. Look for that in the next couple of days.</p>
<p><a href="http://sharethis.com/item?&wp=2.3.3&amp;publisher=f8a81d13-50d0-4a5c-833d-8e5f2341e305&amp;title=Interop+Las+Vegas+2008+-+Some+Interesting+Stats&amp;url=http%3A%2F%2Fblog.sciencelogic.com%2Finterop-las-vegas-2008-some-interesting-stats%2F06%2F2008">ShareThis</a></p>]]></content:encoded>
      <pubDate>Wed, 11 Jun 2008 10:44:02 +0000</pubDate>
      <category domain="http://securityratty.com/tag/network hit">network hit</category>
      <category domain="http://securityratty.com/tag/hit">hit</category>
      <category domain="http://securityratty.com/tag/network">network</category>
      <category domain="http://securityratty.com/tag/power">power</category>
      <category domain="http://securityratty.com/tag/power distribution units">power distribution units</category>
      <category domain="http://securityratty.com/tag/interop">interop</category>
      <category domain="http://securityratty.com/tag/power strips">power strips</category>
      <category domain="http://securityratty.com/tag/interopnet">interopnet</category>
      <category domain="http://securityratty.com/tag/external wan links">external wan links</category>
      <source url="http://blog.sciencelogic.com/interop-las-vegas-2008-some-interesting-stats/06/2008">Interop Las Vegas 2008 - Some Interesting Stats</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more]]></title>
      <link>http://securityratty.com/article/12a646d6f75cd20c5bdf249647b13de5</link>
      <guid>http://securityratty.com/article/12a646d6f75cd20c5bdf249647b13de5</guid>
      <description><![CDATA[Synopsis: Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more
Welcome to Blue Box: The VoIP Security Podcast #78, a 32-minute...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong>&nbsp; Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #78, a 32-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3">Download the show here</a> (MP3, 15MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p>

<p><strong>NOTE: </strong><em>This show was originally recorded on March 27, 2008. Yes, that was over two months ago... we know...</em></p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<p><li><span class="caps">MANY</span> thanks for all the offers of audio production assistance</li><br />
		<li>Dan met with Craig Bowser down at VoiceCon, also David Endler, Mark Collier, etc.</li><br />
		<li>Jonathan met with Dean Elwood, Martyn Davies, etc.</li><br />
		<li><a href="http://voipsa.org/blog/2008/03/21/four-new-security-vulnerabilities-in-asterisk-time-to-upgrade/">Four Asterisk vulnerabilities</a></li><br />
<li>The Economist: <a href="http://www.economist.com/printedition/displaystory.cfm?story_id=10789393">Bugging The Cloud</a></li><br />
<li>Forbes: <a href="http://www.forbes.com/technology/2008/03/18/zimmerman-hacking-voip-tech-security-cx_ag_0318voip.html">How to Make Your Phone Untappable</a></li><br />
<li>VoIP News: <a href="http://www.voip-news.com/feature/voip-spying-031308/">VoIP: Who Might Be Spying on Your Communications? (Hint &#8211; It&#8217;s Not Just the <span class="caps">NSA</span></a></li><br />
		<li>VoIP News: <a href="http://www.voip-news.com/feature/17-wiretap-signs-031908/">Listen Up: 17 Signs That You Are Being Wiretapped</a></li><br />
<li>eChannelLine: <a href="http://www.echannelline.com/usa/brief.cfm?item=15198">Businesses lagging in securing VoIP</a> (also <a href="http://www.computerweekly.com/Articles/2008/03/25/229961/security-being-ignored-as-voip-deployments-increase.htm">ComputerWeekly.com</a> and <a href="http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&#38;newsId=20080324005525&#38;newsLang=en">news release</a> )</li><br />
		<li>eChannelLine: <a href="http://www.echannelline.com/usa/story.cfm?item=23076">Ingate launches enhanced security for VoIP and <span class="caps">SIP</span></a> (also <a href="http://www.voipplanet.com/solutions/article.php/3735601">Enterprise VoIPPlanet</a> )</li><br />
<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/24/hacking-zyxel-gateways/">Hacking Zyxel Gateways</a></li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/17/vishing-attacks/">Vishing Attacks</a></li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/19/fbi-voip-surveillance-requirements-leaked/">FBI VoIP Surveillance Requirements Leaked</a> (also in <a href="http://www.fiercevoip.com/story/fbi-voip-docs-leaked-again/2008-03-17">FierceVoIP</a> and <a href="http://yro.slashdot.org/article.pl?sid=08/03/15/2021257">Slashdot</a> )</li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/20/hackers-send-thousands-of-fake-calls-to-deaf-people/">Hackers Send Thousands of Fake Calls to Deaf People</a></li><br />
<li>SnapVoIP: <a href="http://snapvoip.blogspot.com/2008/03/unified-communications-in-virtual.html">Unified Communications in Virtual Worlds to Solve &#8216;Tower of Babel&#8217; for Intelligence Agencies</a></li><br />
		<li><a href="http://www.textually.org/textually/archives/2008/03/019464.htm">Israeli-made Cryptophone attracts world spy agencies</a> pointing to <a href="http://www.tikalnetworks.com/voip/index.php?cid=29">product site</a></li><br />
<li>BlogInfoSec.com: <a href="http://www.bloginfosec.com/2008/03/25/save-the-whales/">Save The Whales</a> (about a new form of phishing)</li><br />
<li>Network Computing: <a href="http://www.networkcomputing.com/immersion/dataprivacy/showArticle.jhtml?articleID=206904104">Your Data and the <span class="caps">P2P </span>Peril</a></li><br />
<li>NetQoS: <a href="http://www.networkperformancedaily.com/2008/03/voip_monitor_v11_released_and_1.html">VoIP Monitor 1.1 released</a></li><br />
<li><span class="caps">PC </span>World: <a href="http://www.pcworld.com/article/id,143810-c,webservices/article.html">FaceTime Security Product Scans Skype&#8217;s Encrypted IM</a> and <a href="http://www.earthtimes.org/articles/show/facetime-provides-unmatched-malware-prevention-for-leading-voip-and-chat-software,322357.shtml">news release</a></li><br />
		<li><a href="http://www.earthtimes.org/articles/show/sipera-ipcs-solution-for-teleworkers-rated-avaya-compliant,318456.shtml">Sipera <span class="caps">IPCS </span>Solution for Teleworkers Rated &#8216;Avaya Compliant&#8217;</a></li><br />
		<li><a href="http://www.earthtimes.org/articles/show/extreme-networks-boosts-security-for-converged-voice-and-data-networks,317382.shtml">Extreme Networks Boosts Security for Converged Voice and Data Networks with New Tools</a></li></p>

<p><li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li><br />
<li>Wrap-up of the show </li><br />
<li>32:27 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></p></div>
]]></content:encoded>
      <pubDate>Mon, 09 Jun 2008 12:30:57 +0000</pubDate>
      <category domain="http://securityratty.com/tag/voip">voip</category>
      <category domain="http://securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://securityratty.com/tag/voip monitor">voip monitor</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/voip news">voip news</category>
      <category domain="http://securityratty.com/tag/asterisk vulnerabilities">asterisk vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip security podcast">voip security podcast</category>
      <category domain="http://securityratty.com/tag/blue box">blue box</category>
      <category domain="http://securityratty.com/tag/podcast">podcast</category>
      <source url="http://www.blueboxpodcast.com/2008/06/blue-box-79-ast.html">Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more]]></title>
      <link>http://securityratty.com/article/6ff472aef8df8c39ce9d47bf4fe36d51</link>
      <guid>http://securityratty.com/article/6ff472aef8df8c39ce9d47bf4fe36d51</guid>
      <description><![CDATA[Synopsis: Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more
Welcome to Blue Box: The VoIP Security Podcast #78, a 32-minute...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong>&nbsp; Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #78, a 32-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3">Download the show here</a> (MP3, 15MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p>

<p><strong>NOTE: </strong><em>This show was originally recorded on March 27, 2008. Yes, that was over two months ago... we know...</em></p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://media.libsyn.com/media/lodestar/BBP-079-2008-03-27.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<p><li><span class="caps">MANY</span> thanks for all the offers of audio production assistance</li><br />
		<li>Dan met with Craig Bowser down at VoiceCon, also David Endler, Mark Collier, etc.</li><br />
		<li>Jonathan met with Dean Elwood, Martyn Davies, etc.</li><br />
		<li><a href="http://voipsa.org/blog/2008/03/21/four-new-security-vulnerabilities-in-asterisk-time-to-upgrade/">Four Asterisk vulnerabilities</a></li><br />
<li>The Economist: <a href="http://www.economist.com/printedition/displaystory.cfm?story_id=10789393">Bugging The Cloud</a></li><br />
<li>Forbes: <a href="http://www.forbes.com/technology/2008/03/18/zimmerman-hacking-voip-tech-security-cx_ag_0318voip.html">How to Make Your Phone Untappable</a></li><br />
<li>VoIP News: <a href="http://www.voip-news.com/feature/voip-spying-031308/">VoIP: Who Might Be Spying on Your Communications? (Hint &#8211; It&#8217;s Not Just the <span class="caps">NSA</span></a></li><br />
		<li>VoIP News: <a href="http://www.voip-news.com/feature/17-wiretap-signs-031908/">Listen Up: 17 Signs That You Are Being Wiretapped</a></li><br />
<li>eChannelLine: <a href="http://www.echannelline.com/usa/brief.cfm?item=15198">Businesses lagging in securing VoIP</a> (also <a href="http://www.computerweekly.com/Articles/2008/03/25/229961/security-being-ignored-as-voip-deployments-increase.htm">ComputerWeekly.com</a> and <a href="http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&#38;newsId=20080324005525&#38;newsLang=en">news release</a> )</li><br />
		<li>eChannelLine: <a href="http://www.echannelline.com/usa/story.cfm?item=23076">Ingate launches enhanced security for VoIP and <span class="caps">SIP</span></a> (also <a href="http://www.voipplanet.com/solutions/article.php/3735601">Enterprise VoIPPlanet</a> )</li><br />
<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/24/hacking-zyxel-gateways/">Hacking Zyxel Gateways</a></li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/17/vishing-attacks/">Vishing Attacks</a></li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/19/fbi-voip-surveillance-requirements-leaked/">FBI VoIP Surveillance Requirements Leaked</a> (also in <a href="http://www.fiercevoip.com/story/fbi-voip-docs-leaked-again/2008-03-17">FierceVoIP</a> and <a href="http://yro.slashdot.org/article.pl?sid=08/03/15/2021257">Slashdot</a> )</li><br />
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/03/20/hackers-send-thousands-of-fake-calls-to-deaf-people/">Hackers Send Thousands of Fake Calls to Deaf People</a></li><br />
<li>SnapVoIP: <a href="http://snapvoip.blogspot.com/2008/03/unified-communications-in-virtual.html">Unified Communications in Virtual Worlds to Solve &#8216;Tower of Babel&#8217; for Intelligence Agencies</a></li><br />
		<li><a href="http://www.textually.org/textually/archives/2008/03/019464.htm">Israeli-made Cryptophone attracts world spy agencies</a> pointing to <a href="http://www.tikalnetworks.com/voip/index.php?cid=29">product site</a></li><br />
<li>BlogInfoSec.com: <a href="http://www.bloginfosec.com/2008/03/25/save-the-whales/">Save The Whales</a> (about a new form of phishing)</li><br />
<li>Network Computing: <a href="http://www.networkcomputing.com/immersion/dataprivacy/showArticle.jhtml?articleID=206904104">Your Data and the <span class="caps">P2P </span>Peril</a></li><br />
<li>NetQoS: <a href="http://www.networkperformancedaily.com/2008/03/voip_monitor_v11_released_and_1.html">VoIP Monitor 1.1 released</a></li><br />
<li><span class="caps">PC </span>World: <a href="http://www.pcworld.com/article/id,143810-c,webservices/article.html">FaceTime Security Product Scans Skype&#8217;s Encrypted IM</a> and <a href="http://www.earthtimes.org/articles/show/facetime-provides-unmatched-malware-prevention-for-leading-voip-and-chat-software,322357.shtml">news release</a></li><br />
		<li><a href="http://www.earthtimes.org/articles/show/sipera-ipcs-solution-for-teleworkers-rated-avaya-compliant,318456.shtml">Sipera <span class="caps">IPCS </span>Solution for Teleworkers Rated &#8216;Avaya Compliant&#8217;</a></li><br />
		<li><a href="http://www.earthtimes.org/articles/show/extreme-networks-boosts-security-for-converged-voice-and-data-networks,317382.shtml">Extreme Networks Boosts Security for Converged Voice and Data Networks with New Tools</a></li></p>

<p><li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li><br />
<li>Wrap-up of the show </li><br />
<li>32:27 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></p></div>

<p><a href="http://feeds.feedburner.com/~a/BlueBox?a=i1mO1B"><img src="http://feeds.feedburner.com/~a/BlueBox?i=i1mO1B" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BlueBox?a=YWUw1I"><img src="http://feeds.feedburner.com/~f/BlueBox?i=YWUw1I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=74RvnI"><img src="http://feeds.feedburner.com/~f/BlueBox?i=74RvnI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=c8gwAI"><img src="http://feeds.feedburner.com/~f/BlueBox?i=c8gwAI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=HpdUtI"><img src="http://feeds.feedburner.com/~f/BlueBox?i=HpdUtI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=p9H2li"><img src="http://feeds.feedburner.com/~f/BlueBox?i=p9H2li" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=oUodVI"><img src="http://feeds.feedburner.com/~f/BlueBox?i=oUodVI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BlueBox/~4/308280975" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 09 Jun 2008 11:30:58 +0000</pubDate>
      <category domain="http://securityratty.com/tag/voip">voip</category>
      <category domain="http://securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://securityratty.com/tag/voip monitor">voip monitor</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/voip news">voip news</category>
      <category domain="http://securityratty.com/tag/asterisk vulnerabilities">asterisk vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip security podcast">voip security podcast</category>
      <category domain="http://securityratty.com/tag/blue box">blue box</category>
      <category domain="http://securityratty.com/tag/podcast">podcast</category>
      <source url="http://feeds.feedburner.com/~r/BlueBox/~3/308280975/blue-box-79-ast.html">Blue Box #79: Asterisk vulnerabilities, VoiceCon/VON coverage, eavesdropping, FBI, ZFone, P2P, VoIP security news and more</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...]]></title>
      <link>http://securityratty.com/article/9b1f26c831a106cc4ac574cd6b4d7756</link>
      <guid>http://securityratty.com/article/9b1f26c831a106cc4ac574cd6b4d7756</guid>
      <description><![CDATA[Synopsis: Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more
Welcome to Blue Box: The VoIP Security Podcast #75, a 38-minute podcast from...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong> Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...
</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #75, a 38-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3">Download the show here</a> (MP3, 17MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<li><a href="http://www.blueboxpodcast.com/2007/12/new-audio-comme.html">new comment line +1-415-830-5439</a></li>
<li><a href="http://downloads.digium.com/pub/security/AST-2008-001.html">AST-2008-001: Remote Crash Vulnerability in <span class="caps">SIP</span> channel driver</a></li>
<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/01/08/ietf-seeking-feedback-on-requirements-from-sip-session-border-controller-deployments/">IETF seeking feedback on ???Requirements from <span class="caps">SIP </span>Session Border Controller Deployments???</a></li>
		<li><a href="http://voipsa.org/pipermail/voipsec_voipsa.org/2008-January/002554.html">SANS paper on VoIP Security</a> pointing to <a href="http://www.sans.org/reading_room/whitepapers/voip/2036.php">actual paper</a></li>
		<li>ComputerWorld: <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9056224">Security dominates 2008 IT agenda</a></li>
		<li>TechCentral.ie: <a href="http://www.techcentral.ie/article.aspx?id=11649">Coming Together ??? 8 for 2008</a></li>

<li>SecurityPark: <a href="http://www.securitypark.co.uk/security_article260205.html">IT managers complacent about VoIP infrastructure security threats</a>

</li>

<li>TechRepublic: <a href="http://blogs.techrepublic.com.com/security/?p=387">SPAM and <span class="caps">SPIT</span>: what are the dangers?</a> pointing to <a href="http://blogs.techrepublic.com.com/security/?p=386">Does UC present new opportunities for spammers?</a></li>
		<li>VoIP-News: <a href="http://www.voip-news.com/feature/top-blogs-2007-122607/">The VoIP-News Top 25 VoIP Blogs of 2007</a></li>
		<li>List of <a href="http://www.lonerunners.net/blog/archives/1185-VoIP-Hacking-software.html">VoIP Hacking software</a></li>
<li>ITworld.com: <a href="http://www.itworld.com/Career/2003/it-job-skills-that-matter-071220/">IT job skills that matter now</a> (see the first line of the sidebar)</li>
<li>Comment (audio) from Frank Leonhardt</li>
		<li>Comment (blog) from <a href="http://www.blueboxpodcast.com/2006/11/">Raffi</a><br />welcome_to_blue.html#comment-96147586 about <a href="http://www.blueboxpodcast.com/2007/12/blue-box-73-sip.html">Blue Box #73</a></li>
		<li>Comment (blog) from <a href="http://www.blueboxpodcast.com/2007/12/blue-box-73-sip.html#comment-95446398">Aswath</a></li>
		<li>Comment (email) from Ben Penson</li>
		<li>Comment (email) from Shawn Merdinger</li>
		<li>Comment (email) from Jon Farmer</li>
		<li>Comment (email) from Shlomo Dubrowin</li>
		<li>Comment (email) from someone seeking assistance in southern California</li>

<li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li>
<li>Wrap-up of the show </li>
<li> 43:57 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></div>
]]></content:encoded>
      <pubDate>Mon, 11 Feb 2008 12:31:42 +0000</pubDate>
      <category domain="http://securityratty.com/tag/voip">voip</category>
      <category domain="http://securityratty.com/tag/voip-news top">voip-news top</category>
      <category domain="http://securityratty.com/tag/voip-news">voip-news</category>
      <category domain="http://securityratty.com/tag/voip blogs">voip blogs</category>
      <category domain="http://securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/voip security podcast">voip security podcast</category>
      <category domain="http://securityratty.com/tag/listener comment line">listener comment line</category>
      <category domain="http://securityratty.com/tag/comment line">comment line</category>
      <source url="http://www.blueboxpodcast.com/2008/02/blue-box-75-ast.html">Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...]]></title>
      <link>http://securityratty.com/article/e3416ad23a0238215d632e04fc5fc08b</link>
      <guid>http://securityratty.com/article/e3416ad23a0238215d632e04fc5fc08b</guid>
      <description><![CDATA[Synopsis: Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more
Welcome to Blue Box: The VoIP Security Podcast #75, a 38-minute podcast from...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong> Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...
</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #75, a 38-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3">Download the show here</a> (MP3, 17MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-075-2008-01-09.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<li><a href="http://www.blueboxpodcast.com/2007/12/new-audio-comme.html">new comment line +1-415-830-5439</a></li>
<li><a href="http://downloads.digium.com/pub/security/AST-2008-001.html">AST-2008-001: Remote Crash Vulnerability in <span class="caps">SIP</span> channel driver</a></li>
<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2008/01/08/ietf-seeking-feedback-on-requirements-from-sip-session-border-controller-deployments/">IETF seeking feedback on ‘Requirements from <span class="caps">SIP </span>Session Border Controller Deployments’</a></li>
		<li><a href="http://voipsa.org/pipermail/voipsec_voipsa.org/2008-January/002554.html">SANS paper on VoIP Security</a> pointing to <a href="http://www.sans.org/reading_room/whitepapers/voip/2036.php">actual paper</a></li>
		<li>ComputerWorld: <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9056224">Security dominates 2008 IT agenda</a></li>
		<li>TechCentral.ie: <a href="http://www.techcentral.ie/article.aspx?id=11649">Coming Together – 8 for 2008</a></li>

<li>SecurityPark: <a href="http://www.securitypark.co.uk/security_article260205.html">IT managers complacent about VoIP infrastructure security threats</a>

</li>

<li>TechRepublic: <a href="http://blogs.techrepublic.com.com/security/?p=387">SPAM and <span class="caps">SPIT</span>: what are the dangers?</a> pointing to <a href="http://blogs.techrepublic.com.com/security/?p=386">Does UC present new opportunities for spammers?</a></li>
		<li>VoIP-News: <a href="http://www.voip-news.com/feature/top-blogs-2007-122607/">The VoIP-News Top 25 VoIP Blogs of 2007</a></li>
		<li>List of <a href="http://www.lonerunners.net/blog/archives/1185-VoIP-Hacking-software.html">VoIP Hacking software</a></li>
<li>ITworld.com: <a href="http://www.itworld.com/Career/2003/it-job-skills-that-matter-071220/">IT job skills that matter now</a> (see the first line of the sidebar)</li>
<li>Comment (audio) from Frank Leonhardt</li>
		<li>Comment (blog) from <a href="http://www.blueboxpodcast.com/2006/11/">Raffi</a><br />welcome_to_blue.html#comment-96147586 about <a href="http://www.blueboxpodcast.com/2007/12/blue-box-73-sip.html">Blue Box #73</a></li>
		<li>Comment (blog) from <a href="http://www.blueboxpodcast.com/2007/12/blue-box-73-sip.html#comment-95446398">Aswath</a></li>
		<li>Comment (email) from Ben Penson</li>
		<li>Comment (email) from Shawn Merdinger</li>
		<li>Comment (email) from Jon Farmer</li>
		<li>Comment (email) from Shlomo Dubrowin</li>
		<li>Comment (email) from someone seeking assistance in southern California</li>

<li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li>
<li>Wrap-up of the show </li>
<li> 43:57 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></div>

<p><a href="http://feeds.feedburner.com/~a/BlueBox?a=nZlW4T"><img src="http://feeds.feedburner.com/~a/BlueBox?i=nZlW4T" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BlueBox?a=MwdOd1E"><img src="http://feeds.feedburner.com/~f/BlueBox?i=MwdOd1E" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=JvXfXwE"><img src="http://feeds.feedburner.com/~f/BlueBox?i=JvXfXwE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=j9gBhlE"><img src="http://feeds.feedburner.com/~f/BlueBox?i=j9gBhlE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=NhFHUZE"><img src="http://feeds.feedburner.com/~f/BlueBox?i=NhFHUZE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=BzEb8fe"><img src="http://feeds.feedburner.com/~f/BlueBox?i=BzEb8fe" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=8BmXRNE"><img src="http://feeds.feedburner.com/~f/BlueBox?i=8BmXRNE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BlueBox/~4/233340521" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 11 Feb 2008 11:31:43 +0000</pubDate>
      <category domain="http://securityratty.com/tag/voip">voip</category>
      <category domain="http://securityratty.com/tag/voip-news top">voip-news top</category>
      <category domain="http://securityratty.com/tag/voip-news">voip-news</category>
      <category domain="http://securityratty.com/tag/voip blogs">voip blogs</category>
      <category domain="http://securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/voip security podcast">voip security podcast</category>
      <category domain="http://securityratty.com/tag/listener comment line">listener comment line</category>
      <category domain="http://securityratty.com/tag/comment line">comment line</category>
      <source url="http://feeds.feedburner.com/~r/BlueBox/~3/233340521/blue-box-75-ast.html">Blue Box #75: Asterisk vulnerability, SANS paper on VoIP security, SPIT, tons of listener comments and much more...</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....]]></title>
      <link>http://securityratty.com/article/c0914c73b0c753bea48c9000c9d04ea9</link>
      <guid>http://securityratty.com/article/c0914c73b0c753bea48c9000c9d04ea9</guid>
      <description><![CDATA[Synopsis: Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more
Welcome to Blue Box: The VoIP Security Podcast #74, a...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong> Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....
</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #74, a 44-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3">Download the show here</a> (MP3, 20MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<li><a href="http://www.blueboxpodcast.com/2007/12/new-audio-comme.html">new comment line +1-415-830-5439</a></li>
		<li><a href="http://www.blueboxpodcast.com/2007/12/blue-box-se022.html">SE 22 with Jonathan Rosenberg</a></li>
<li><a href="http://downloads.digium.com/pub/security/AST-2007-027.html">Asterisk <span class="caps">AST</span>-2007-027: Database matching order permits host-based authentication to be ignored</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2007/12/17/trixbox-contains-phone-home-code-to-retrieve-arbitrary-commands-to-execute/">Trixbox contains &#8216;phone home&#8217; code to retrieve arbitrary commands to execute</a></li>
		<li><a href="http://www.trixbox.org/trixbox-ce-audit-tool-official-statement-and-fixes">trixbox CE audit tool official statement and fixes</a></li>
		<li><a href="http://www.trixbox.org/audit-tool-change-plan">Audit Tool Change Plan</a></li>
		<li><a href="http://www.trixbox.org/audit-tool-fix-being-pushed-out-tonight">Audit tool &#8216;fix&#8217; being pushed out tonight</a></li>

<li>ComputerWorld: <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&#38;articleId=9053452&#38;source=rss_news50">VoIP vulnerabilities increasing, but not exploits</a></li>
		<li><span class="caps">CRN</span>: <a href="http://www.crn.com/networking/205100204">Top 9 VoIP Threats and Vulnerabilities</a> (Sipera PR strikes again) &#8211; points to <span class="caps">CRN</span> article: <a href="http://www.crn.com/networking/204805527">VoIP Threats, Vulnerabilities Abound</a> which is based on press release <a href="http://www.techweb.com/showPressRelease.jhtml?articleID=X661245">Sipera <span class="caps">VIPER </span>Lab Reveals Top 5 VoIP Vulnerabilities in 2007</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2007/12/12/pointers-to-any-audit-methodology-for-forensic-analysis-of-voip-systems/">Pointers to any audi methodology for forensic analysis of VoIP systems?</a></li>
		<li><span class="caps">TMC</span>.net: <a href="http://sip.tmcnet.com/topics/sip-and-open-standards/articles/16548-sip-security-just-it-right.htm">SIP and Security: Just Do It Right!</a></li>

<li><a href="http://money.cnn.com/news/newsfeeds/articles/prnewswire/NYW006A19122007-1.htm">PAETEC, Alcatel-Lucent Deploy Industry Leading Disaster Recovery VoIP Solution</a></li>

<li>Feature:  top stories of 2007 and trends for 2008</li>



<li>No comments this week.</li>
<li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li>
<li>Wrap-up of the show </li>
<li> 43:57 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></div>
]]></content:encoded>
      <pubDate>Tue, 08 Jan 2008 14:42:39 +0000</pubDate>
      <category domain="http://securityratty.com/tag/trends">trends</category>
      <category domain="http://securityratty.com/tag/vulnerabilities">vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip security trends">voip security trends</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/trixbox vulnerabilities">trixbox vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip vulnerabilities">voip vulnerabilities</category>
      <category domain="http://securityratty.com/tag/listener comment line">listener comment line</category>
      <category domain="http://securityratty.com/tag/comment line">comment line</category>
      <category domain="http://securityratty.com/tag/top">top</category>
      <source url="http://www.blueboxpodcast.com/2008/01/blue-box-74-200.html">Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....]]></title>
      <link>http://securityratty.com/article/8076404175c339d862777d2e464a59e5</link>
      <guid>http://securityratty.com/article/8076404175c339d862777d2e464a59e5</guid>
      <description><![CDATA[Synopsis: Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more
Welcome to Blue Box: The VoIP Security Podcast #74, a...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong> Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....
</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #74, a 44-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3">Download the show here</a> (MP3, 20MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-074-2007-12-20.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<li><a href="http://www.blueboxpodcast.com/2007/12/new-audio-comme.html">new comment line +1-415-830-5439</a></li>
		<li><a href="http://www.blueboxpodcast.com/2007/12/blue-box-se022.html">SE 22 with Jonathan Rosenberg</a></li>
<li><a href="http://downloads.digium.com/pub/security/AST-2007-027.html">Asterisk <span class="caps">AST</span>-2007-027: Database matching order permits host-based authentication to be ignored</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2007/12/17/trixbox-contains-phone-home-code-to-retrieve-arbitrary-commands-to-execute/">Trixbox contains &#8216;phone home&#8217; code to retrieve arbitrary commands to execute</a></li>
		<li><a href="http://www.trixbox.org/trixbox-ce-audit-tool-official-statement-and-fixes">trixbox CE audit tool official statement and fixes</a></li>
		<li><a href="http://www.trixbox.org/audit-tool-change-plan">Audit Tool Change Plan</a></li>
		<li><a href="http://www.trixbox.org/audit-tool-fix-being-pushed-out-tonight">Audit tool &#8216;fix&#8217; being pushed out tonight</a></li>

<li>ComputerWorld: <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&#38;articleId=9053452&#38;source=rss_news50">VoIP vulnerabilities increasing, but not exploits</a></li>
		<li><span class="caps">CRN</span>: <a href="http://www.crn.com/networking/205100204">Top 9 VoIP Threats and Vulnerabilities</a> (Sipera PR strikes again) &#8211; points to <span class="caps">CRN</span> article: <a href="http://www.crn.com/networking/204805527">VoIP Threats, Vulnerabilities Abound</a> which is based on press release <a href="http://www.techweb.com/showPressRelease.jhtml?articleID=X661245">Sipera <span class="caps">VIPER </span>Lab Reveals Top 5 VoIP Vulnerabilities in 2007</a></li>
		<li>Voice of <span class="caps">VOIPSA</span>: <a href="http://voipsa.org/blog/2007/12/12/pointers-to-any-audit-methodology-for-forensic-analysis-of-voip-systems/">Pointers to any audi methodology for forensic analysis of VoIP systems?</a></li>
		<li><span class="caps">TMC</span>.net: <a href="http://sip.tmcnet.com/topics/sip-and-open-standards/articles/16548-sip-security-just-it-right.htm">SIP and Security: Just Do It Right!</a></li>

<li><a href="http://money.cnn.com/news/newsfeeds/articles/prnewswire/NYW006A19122007-1.htm">PAETEC, Alcatel-Lucent Deploy Industry Leading Disaster Recovery VoIP Solution</a></li>

<li>Feature:  top stories of 2007 and trends for 2008</li>



<li>No comments this week.</li>
<li>Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li>
<li>Wrap-up of the show </li>
<li> 43:57 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></div>

<p><a href="http://feeds.feedburner.com/~a/BlueBox?a=KVZkW6"><img src="http://feeds.feedburner.com/~a/BlueBox?i=KVZkW6" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BlueBox?a=xlJ8KzD"><img src="http://feeds.feedburner.com/~f/BlueBox?i=xlJ8KzD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=9ad3x1D"><img src="http://feeds.feedburner.com/~f/BlueBox?i=9ad3x1D" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=bCFmBuD"><img src="http://feeds.feedburner.com/~f/BlueBox?i=bCFmBuD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=MjMbHMD"><img src="http://feeds.feedburner.com/~f/BlueBox?i=MjMbHMD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=AFX6Htd"><img src="http://feeds.feedburner.com/~f/BlueBox?i=AFX6Htd" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=nuf0RmD"><img src="http://feeds.feedburner.com/~f/BlueBox?i=nuf0RmD" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BlueBox/~4/213446795" height="1" width="1"/>]]></content:encoded>
      <pubDate>Tue, 08 Jan 2008 13:42:40 +0000</pubDate>
      <category domain="http://securityratty.com/tag/trends">trends</category>
      <category domain="http://securityratty.com/tag/vulnerabilities">vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip security trends">voip security trends</category>
      <category domain="http://securityratty.com/tag/security">security</category>
      <category domain="http://securityratty.com/tag/trixbox vulnerabilities">trixbox vulnerabilities</category>
      <category domain="http://securityratty.com/tag/voip vulnerabilities">voip vulnerabilities</category>
      <category domain="http://securityratty.com/tag/listener comment line">listener comment line</category>
      <category domain="http://securityratty.com/tag/comment line">comment line</category>
      <category domain="http://securityratty.com/tag/top">top</category>
      <source url="http://feeds.feedburner.com/~r/BlueBox/~3/213446795/blue-box-74-200.html">Blue Box #74: 2008 Crystal Ball Edition, Asterisk and Trixbox vulnerabilities, top 10 lists, VoIP security trends for 2008 and more....</source>
    </item>
    <item>
      <title><![CDATA[Blue Box #72: Asterisk security vulnerabilities, Skype and the German government, VoIP security news, listener comments and more]]></title>
      <link>http://securityratty.com/article/3254cd6eb83f5b25e02aedf4cc4b9d0e</link>
      <guid>http://securityratty.com/article/3254cd6eb83f5b25e02aedf4cc4b9d0e</guid>
      <description><![CDATA[Synopsis: Blue Box #72: Asterisk security vulnerabilities, Skype and the German government, VoIP security news, listener comments and more
Welcome to Blue Box: The VoIP Security Podcast #72, a...]]></description>
      <content:encoded><![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p><strong>Synopsis:</strong> Blue Box #72: Asterisk security vulnerabilities, Skype and the German government, VoIP security news, listener comments and more</p><hr /><p>Welcome to <strong>Blue Box: The VoIP Security Podcast</strong> #72, a 25-minute podcast&nbsp; from Dan York and Jonathan Zar covering VoIP security news, comments and opinions.&nbsp; &nbsp; </p>

<p><a rel="enclosure" href="http://ripple.radiotail.com/409/BBP-072-2007-11-30.mp3">Download the show here</a> (MP3, 11MB) or <a href="http://feeds.feedburner.com/BlueBox">subscribe to the RSS feed</a> to download the show automatically.&nbsp; </p> 

<p>You may also listen to this podcast right now:</p> 

<p><object width="200" height="20" data="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-072-2007-11-30.mp3" type="application/x-shockwave-flash"><param value="http://www.blueboxpodcast.com/dewplayer.swf?son=http://ripple.radiotail.com/409/BBP-072-2007-11-30.mp3&amp;bgcolor=#FFFFFF" name="movie" /></object> </p> 

<p><em>NOTE: This show was recorded on November 30, 2007.</em></p>
<p><strong>Show Content:</strong></p> 
 

<ul> <li>00:20 - Intro to the show, contact information and how to provide comments.&nbsp; Welcome to all the new listeners - and to all those listeners who have been here for so long!&nbsp; </li>

<li><a href="http://downloads.digium.com/pub/security/AST-2007-025.html">- AST-2007-025 – Asterisk – <span class="caps">SQL </span>Injection issue in res_config_pgsql</a></li>
		<li><a href="http://downloads.digium.com/pub/security/AST-2007-026.html">- AST-2007-026 – Asterisk SQL Injection issue in cdr_pgsql</a></li>

		<li>- TechWorld: <a href="http://www.techworld.com/security/news/index.cfm?newsid=10736">Expert scares world with VoIP hacking proof</a> pointing to <a href="http://siptap.voipcode.org/">SIPtap</a> - Articles also in <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9048618&amp;intsrc=hm_list">ComputerWorld</a></li>
<li>- Wired: <a href="http://blog.wired.com/gadgets/2007/11/skype-encryptio.html">Skype encryption baffles German police</a> – also in <a href="http://www.channelregister.co.uk/2007/11/23/skype_stumps_german_spys/">The Register</a> and <a href="http://techdirt.com/articles/20071126/174251.shtml">TechDirt</a></li>
<li>- VoIP News: <a href="http://www.voip-news.com/feature/voip-insecurity-111907/">Why Nobody’s VoIP is Secure</a></li>
<li><span class="caps">- PC </span>World: <a href="http://www.pcworld.com/article/id,139804-c,cybercrime/article.html">‘Swatters’ Trick AT&amp;T’</a></li>

<li>- Comment (email) from Shawn Merdinger</li>

<li>- Comment (email) from Yann Cloatre</li>

<li>- Comment (email) from Miguel Garcia</li>

<li>- Comment (email) from Roel Villarius about Dutch spam filter</li>

<li>- Review of the last week's traffic on the <a href="http://www.voipsa.org/VOIPSEC/">VOIPSEC </a>public mailing list&nbsp; </li>
<li>- Wrap-up of the show </li>
<li> 25:27 - End of show&nbsp; </li></ul> <p>Comments, suggestions and feedback are welcome either as replies to this post&nbsp; or via e-mail to <a href="mailto:blueboxpodcast@gmail.com">blueboxpodcast@gmail.com</a>.&nbsp; Audio comments sent as attached MP3 files are definitely welcome and will be played in future shows.&nbsp; You may also call the listener comment line at either <del>+1-206-350-7280</del> +1-415-830-5439 or via SIP to '<a href="sip:bluebox@voipuser.org">bluebox@voipuser.org</a>' to leave a comment there.&nbsp; </p> <p>Thank you for listening and please do let us know what you think of the show. </p></div>

<p><a href="http://feeds.feedburner.com/~a/BlueBox?a=e8tS6W"><img src="http://feeds.feedburner.com/~a/BlueBox?i=e8tS6W" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BlueBox?a=7PsxXVC"><img src="http://feeds.feedburner.com/~f/BlueBox?i=7PsxXVC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=rAvn4XC"><img src="http://feeds.feedburner.com/~f/BlueBox?i=rAvn4XC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=wgluZiC"><img src="http://feeds.feedburner.com/~f/BlueBox?i=wgluZiC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=NVyLXqC"><img src="http://feeds.feedburner.com/~f/BlueBox?i=NVyLXqC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=bsC1Tkc"><img src="http://feeds.feedburner.com/~f/BlueBox?i=bsC1Tkc" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BlueBox?a=Q6j3qRC"><img src="http://feeds.feedburner.com/~f/BlueBox?i=Q6j3qRC" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BlueBox/~4/201951049" height="1" width="1"/>]]></content:encoded>
      <pubDate>Mon, 31 Dec 2007 14:59:51 +0000</pubDate>
      <category domain="http://securityratty.com/tag/voip">voip</category>
      <category domain="http://securityratty.com/tag/voip security news">voip security news</category>
      <category domain="http://securityratty.com/tag/comments">comments</category>
      <category domain="http://securityratty.com/tag/listener comments">listener comments</category>
      <category domain="http://securityratty.com/tag/voip news">voip news</category>
      <category domain="http://securityratty.com/tag/voip security podcast">voip security podcast</category>
      <category domain="http://securityratty.com/tag/listener comment line">listener comment line</category>
      <category domain="http://securityratty.com/tag/blue box">blue box</category>
      <category domain="http://securityratty.com/tag/comment">comment</category>
      <source url="http://feeds.feedburner.com/~r/BlueBox/~3/201951049/blue-box-72-ast.html">Blue Box #72: Asterisk security vulnerabilities, Skype and the German government, VoIP security news, listener comments and more</source>
    </item>
  </channel>
</rss>
