<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page hids 
             and everything recently tagged hids -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>hids on SWiK</title>
        <doap:name>hids</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/hids</link>
        <doap:homepage></doap:homepage>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>OSSEC v1.5 now has builtin Asterisk rules</title>
            <link>http://swik.net/sipvicious/SIPVicious+Feed/OSSEC+v1.5+now+has+builtin+Asterisk+rules/b4snj</link>
            <description>A &lt;a href=&quot;http://www.ossec.net/dcid/?p=133&quot;&gt;new OSSEC version&lt;/a&gt; has been released. Along with a number of updates, OSSEC now includes the Asterisk rules that were first published in &lt;a href=&quot;http://enablesecurity.com/resources/22_29_storming_sip.pdf&quot;&gt;my hakin9 article&lt;/a&gt; and then &lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html&quot;&gt;here&lt;/a&gt;. The rest of the updates are described in the &lt;a href=&quot;http://www.ossec.net/announcements/v1.5-2008-05-02.txt&quot;&gt;Changelog&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://www.ossec.net/main/downloads&quot;&gt;Grab it now.&lt;/a&gt;</description>
            
            <pubDate>Fri, 02 May 2008 01:17:38 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSEC v1.5 now has builtin Asterisk rules</title>
            <link>http://swik.net/sipvicious/SIPVicious/OSSEC+v1.5+now+has+builtin+Asterisk+rules/b4snh</link>
            <description>A &lt;a href=&quot;http://www.ossec.net/dcid/?p=133&quot;&gt;new OSSEC version&lt;/a&gt; has been released. Along with a number of updates, OSSEC now includes the Asterisk rules that were first published in &lt;a href=&quot;http://enablesecurity.com/resources/22_29_storming_sip.pdf&quot;&gt;my hakin9 article&lt;/a&gt; and then &lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html&quot;&gt;here&lt;/a&gt;. The rest of the updates are described in the &lt;a href=&quot;http://www.ossec.net/announcements/v1.5-2008-05-02.txt&quot;&gt;Changelog&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://www.ossec.net/main/downloads&quot;&gt;Grab it now.&lt;/a&gt;</description>
            
            <pubDate>Fri, 02 May 2008 01:17:37 -0700</pubDate>
        </item>
            
        <item>
            <title>Using OSSEC to detect attacks on an Asterisk box</title>
            <link>http://swik.net/sipvicious/SIPVicious+Feed/Using+OSSEC+to+detect+attacks+on+an+Asterisk+box/b32d6</link>
            <description>&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 90px;&quot; src=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;This post is an echo on the &lt;a href=&quot;http://sipvicious.org/blog/2008/02/detecting-sip-attacks-with-snort.html&quot;&gt;previous post&lt;/a&gt; which describes how to configure snort to detect SIP attacks. This time we look at detecting attacks at the PBX&#039;s end rather than by monitoring network traffic. &lt;a href=&quot;http://www.ossec.net/&quot;&gt;OSSEC&lt;/a&gt; allows us to do just this - it is a host intrusion detection system that can do matching on log files and actively react to attack.&lt;br/&gt;&lt;br/&gt;By default OSSEC does not have support for Asterisk. To add this functionality place a new xml file called asterisk.xml in the OSSEC rules directory (typically at /var/ossec/rules/). This file contains rules for the following violations:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;User/Extension enumeration&lt;/li&gt;&lt;li&gt;Password cracking attacks&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;The actual rules file can be downloaded &lt;a href=&quot;http://sipvicious.org/resources/asterisk.xml&quot;&gt;here&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;This rules file needs to be referenced from the main configuration usually found in /var/ossec/etc/ossec.conf. This can be done by adding the following line to this file:&lt;br/&gt;&lt;span style=&quot;&quot;&gt;&lt;br/&gt;&lt;pre&gt;&amp;lt;include&amp;gt;asterisk.xml&amp;lt;/include&amp;gt;&lt;/pre&gt;&lt;br/&gt;&lt;/span&gt;Then we need to add a decoder entry so that OSSEC can extract the offending IP address. This is done by including the below section to the decoder definition file usually found at /var/ossec/etc/decoder.conf:&lt;br/&gt;&lt;pre&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk&quot;&amp;gt;&lt;br/&gt;&amp;lt;program_name&amp;gt;^asterisk&amp;lt;/program_name&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk-denied&quot;&amp;gt;&lt;br/&gt;&amp;lt;parent&amp;gt;asterisk&amp;lt;/parent&amp;gt;&lt;br/&gt;&amp;lt;prematch&amp;gt;Registration from &amp;lt;/prematch&amp;gt;&lt;br/&gt;&amp;lt;regex offset=&quot;after_prematch&quot;&amp;gt;failed for &#039;(\d+.\d+.\d+.\d+)&#039;&amp;lt;/regex&amp;gt;&lt;br/&gt;&amp;lt;order&amp;gt;srcip&amp;lt;/order&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;/pre&gt;&lt;br/&gt;Do not forget to restart OSSEC. Typically done by executing the following command:&lt;br/&gt;&lt;pre&gt;/etc/init.d/ossec restart&lt;/pre&gt;Finally - it is important to make sure that Asterisk is configured to log to syslog and restarted. The next commands to execute are:&lt;br/&gt;&lt;pre&gt;echo &quot;syslog.local0 =&amp;gt; notice,warning,error&quot; &amp;gt;&amp;gt; /etc/asterisk/logger.conf&lt;br/&gt;&lt;br/&gt;/etc/init.d/asterisk restart&lt;br/&gt;&lt;/pre&gt;Note: Check out &lt;span class=&quot;anon-comment-author&quot;&gt;&lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html#8065701330545624696&quot;&gt;Laureano&#039;s post&lt;/a&gt; on how to just reload the logger configuration.&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;That&#039;s it. Note that this has been tested on a Trixbox VM and your Asterisk configuration might require some modifications since it appears that Asterisk log files are not so standard.&lt;br/&gt;&lt;br/&gt;Oh, and to test these rules you can obviously use &lt;a href=&quot;http://code.google.com/p/sipvicious/downloads/list&quot;&gt;SIPVicious tool suite&lt;/a&gt; ;-)</description>
            
            <pubDate>Wed, 02 Apr 2008 21:55:49 -0700</pubDate>
        </item>
            
        <item>
            <title>Using OSSEC to detect attacks on an Asterisk box</title>
            <link>http://swik.net/sipvicious/SIPVicious/Using+OSSEC+to+detect+attacks+on+an+Asterisk+box/b32dh</link>
            <description>&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 90px;&quot; src=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;This post is an echo on the &lt;a href=&quot;http://sipvicious.org/blog/2008/02/detecting-sip-attacks-with-snort.html&quot;&gt;previous post&lt;/a&gt; which describes how to configure snort to detect SIP attacks. This time we look at detecting attacks at the PBX&#039;s end rather than by monitoring network traffic. &lt;a href=&quot;http://www.ossec.net/&quot;&gt;OSSEC&lt;/a&gt; allows us to do just this - it is a host intrusion detection system that can do matching on log files and actively react to attack.&lt;br/&gt;&lt;br/&gt;By default OSSEC does not have support for Asterisk. To add this functionality place a new xml file called asterisk.xml in the OSSEC rules directory (typically at /var/ossec/rules/). This file contains rules for the following violations:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;User/Extension enumeration&lt;/li&gt;&lt;li&gt;Password cracking attacks&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;The actual rules file can be downloaded &lt;a href=&quot;http://sipvicious.org/resources/asterisk.xml&quot;&gt;here&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;This rules file needs to be referenced from the main configuration usually found in /var/ossec/etc/ossec.conf. This can be done by adding the following line to this file:&lt;br/&gt;&lt;span style=&quot;&quot;&gt;&lt;br/&gt;&lt;pre&gt;&amp;lt;include&amp;gt;asterisk.xml&amp;lt;/include&amp;gt;&lt;/pre&gt;&lt;br/&gt;&lt;/span&gt;Then we need to add a decoder entry so that OSSEC can extract the offending IP address. This is done by including the below section to the decoder definition file usually found at /var/ossec/etc/decoder.conf:&lt;br/&gt;&lt;pre&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk&quot;&amp;gt;&lt;br/&gt;&amp;lt;program_name&amp;gt;^asterisk&amp;lt;/program_name&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk-denied&quot;&amp;gt;&lt;br/&gt;&amp;lt;parent&amp;gt;asterisk&amp;lt;/parent&amp;gt;&lt;br/&gt;&amp;lt;prematch&amp;gt;Registration from &amp;lt;/prematch&amp;gt;&lt;br/&gt;&amp;lt;regex offset=&quot;after_prematch&quot;&amp;gt;failed for &#039;(\d+.\d+.\d+.\d+)&#039;&amp;lt;/regex&amp;gt;&lt;br/&gt;&amp;lt;order&amp;gt;srcip&amp;lt;/order&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;/pre&gt;&lt;br/&gt;Do not forget to restart OSSEC. Typically done by executing the following command:&lt;br/&gt;&lt;pre&gt;/etc/init.d/ossec restart&lt;/pre&gt;Finally - it is important to make sure that Asterisk is configured to log to syslog and restarted. The next commands to execute are:&lt;br/&gt;&lt;pre&gt;echo &quot;syslog.local0 =&amp;gt; notice,warning,error&quot; &amp;gt;&amp;gt; /etc/asterisk/logger.conf&lt;br/&gt;&lt;br/&gt;/etc/init.d/asterisk restart&lt;br/&gt;&lt;/pre&gt;Note: Check out &lt;span class=&quot;anon-comment-author&quot;&gt;&lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html#8065701330545624696&quot;&gt;Laureano&#039;s post&lt;/a&gt; on how to just reload the logger configuration.&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;That&#039;s it. Note that this has been tested on a Trixbox VM and your Asterisk configuration might require some modifications since it appears that Asterisk log files are not so standard.&lt;br/&gt;&lt;br/&gt;Oh, and to test these rules you can obviously use &lt;a href=&quot;http://code.google.com/p/sipvicious/downloads/list&quot;&gt;SIPVicious tool suite&lt;/a&gt; ;-)</description>
            
            <pubDate>Wed, 02 Apr 2008 21:55:45 -0700</pubDate>
        </item>
            
        <item>
            <title>Using OSSEC to detect attacks on an Asterisk box</title>
            <link>http://swik.net/sipvicious/SIPVicious+Feed/Using+OSSEC+to+detect+attacks+on+an+Asterisk+box/b3obl</link>
            <description>&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 90px;&quot; src=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;This post is an echo on the &lt;a href=&quot;http://sipvicious.org/blog/2008/02/detecting-sip-attacks-with-snort.html&quot;&gt;previous post&lt;/a&gt; which describes how to configure snort to detect SIP attacks. This time we look at detecting attacks at the PBX&#039;s end rather than by monitoring network traffic. &lt;a href=&quot;http://www.ossec.net/&quot;&gt;OSSEC&lt;/a&gt; allows us to do just this - it is a host intrusion detection system that can do matching on log files and actively react to attack.&lt;br/&gt;&lt;br/&gt;By default OSSEC does not have support for Asterisk. To add this functionality place a new xml file called asterisk.xml in the OSSEC rules directory (typically at /var/ossec/rules/). This file contains rules for the following violations:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;User/Extension enumeration&lt;/li&gt;&lt;li&gt;Password cracking attacks&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;The actual rules file can be downloaded &lt;a href=&quot;http://sipvicious.org/resources/asterisk.xml&quot;&gt;here&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;This rules file needs to be referenced from the main configuration usually found in /var/ossec/etc/ossec.conf. This can be done by adding the following line to this file:&lt;br/&gt;&lt;span style=&quot;&quot;&gt;&lt;br/&gt;&lt;pre&gt;&amp;lt;include&amp;gt;asterisk.xml&amp;lt;/include&amp;gt;&lt;/pre&gt;&lt;br/&gt;&lt;/span&gt;Then we need to add a decoder entry so that OSSEC can extract the offending IP address. This is done by including the below section to the decoder definition file usually found at /var/ossec/etc/decoder.conf:&lt;br/&gt;&lt;pre&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk&quot;&amp;gt;&lt;br/&gt;&amp;lt;program_name&amp;gt;^asterisk&amp;lt;/program_name&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk-denied&quot;&amp;gt;&lt;br/&gt;&amp;lt;parent&amp;gt;asterisk&amp;lt;/parent&amp;gt;&lt;br/&gt;&amp;lt;prematch&amp;gt;Registration from &amp;lt;/prematch&amp;gt;&lt;br/&gt;&amp;lt;regex offset=&quot;after_prematch&quot;&amp;gt;failed for &#039;(\d+.\d+.\d+.\d+)&#039;&amp;lt;/regex&amp;gt;&lt;br/&gt;&amp;lt;order&amp;gt;srcip&amp;lt;/order&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;/pre&gt;&lt;br/&gt;Do not forget to restart OSSEC. Typically done by executing the following command:&lt;br/&gt;&lt;pre&gt;/etc/init.d/ossec restart&lt;/pre&gt;Finally - it is important to make sure that Asterisk is configured to log to syslog and restarted. The next commands to execute are:&lt;br/&gt;&lt;pre&gt;echo &quot;syslog.local0 =&amp;gt; notice,warning,error&quot; &amp;gt;&amp;gt; /etc/asterisk/logger.conf&lt;br/&gt;&lt;br/&gt;/etc/init.d/asterisk restart&lt;br/&gt;&lt;/pre&gt;Note: Check out &lt;span class=&quot;anon-comment-author&quot;&gt;&lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html#8065701330545624696&quot;&gt;Laureano&#039;s post&lt;/a&gt; on how to just reload the logger configuration.&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;That&#039;s it. Note that this has been tested on a Trixbox VM and your Asterisk configuration might require some modifications since it appears that Asterisk log files are not so standard.&lt;br/&gt;&lt;br/&gt;Oh, and to test these rules you can obviously use &lt;a href=&quot;http://code.google.com/p/sipvicious/downloads/list&quot;&gt;SIPVicious tool suite&lt;/a&gt; ;-)</description>
            
            <pubDate>Sat, 15 Mar 2008 03:51:17 -0700</pubDate>
        </item>
            
        <item>
            <title>Using OSSEC to detect attacks on an Asterisk box</title>
            <link>http://swik.net/sipvicious/SIPVicious/Using+OSSEC+to+detect+attacks+on+an+Asterisk+box/b3obk</link>
            <description>&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 90px;&quot; src=&quot;http://www.ossec.net/img/ossec_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;This post is an echo on the &lt;a href=&quot;http://sipvicious.org/blog/2008/02/detecting-sip-attacks-with-snort.html&quot;&gt;previous post&lt;/a&gt; which describes how to configure snort to detect SIP attacks. This time we look at detecting attacks at the PBX&#039;s end rather than by monitoring network traffic. &lt;a href=&quot;http://www.ossec.net/&quot;&gt;OSSEC&lt;/a&gt; allows us to do just this - it is a host intrusion detection system that can do matching on log files and actively react to attack.&lt;br/&gt;&lt;br/&gt;By default OSSEC does not have support for Asterisk. To add this functionality place a new xml file called asterisk.xml in the OSSEC rules directory (typically at /var/ossec/rules/). This file contains rules for the following violations:&lt;br/&gt;&lt;ul&gt;&lt;li&gt;User/Extension enumeration&lt;/li&gt;&lt;li&gt;Password cracking attacks&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;The actual rules file can be downloaded &lt;a href=&quot;http://sipvicious.org/resources/asterisk.xml&quot;&gt;here&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;This rules file needs to be referenced from the main configuration usually found in /var/ossec/etc/ossec.conf. This can be done by adding the following line to this file:&lt;br/&gt;&lt;span style=&quot;&quot;&gt;&lt;br/&gt;&lt;pre&gt;&amp;lt;include&amp;gt;asterisk.xml&amp;lt;/include&amp;gt;&lt;/pre&gt;&lt;br/&gt;&lt;/span&gt;Then we need to add a decoder entry so that OSSEC can extract the offending IP address. This is done by including the below section to the decoder definition file usually found at /var/ossec/etc/decoder.conf:&lt;br/&gt;&lt;pre&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk&quot;&amp;gt;&lt;br/&gt;&amp;lt;program_name&amp;gt;^asterisk&amp;lt;/program_name&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;decoder name=&quot;asterisk-denied&quot;&amp;gt;&lt;br/&gt;&amp;lt;parent&amp;gt;asterisk&amp;lt;/parent&amp;gt;&lt;br/&gt;&amp;lt;prematch&amp;gt;Registration from &amp;lt;/prematch&amp;gt;&lt;br/&gt;&amp;lt;regex offset=&quot;after_prematch&quot;&amp;gt;failed for &#039;(\d+.\d+.\d+.\d+)&#039;&amp;lt;/regex&amp;gt;&lt;br/&gt;&amp;lt;order&amp;gt;srcip&amp;lt;/order&amp;gt;&lt;br/&gt;&amp;lt;/decoder&amp;gt;&lt;br/&gt;&lt;/pre&gt;&lt;br/&gt;Do not forget to restart OSSEC. Typically done by executing the following command:&lt;br/&gt;&lt;pre&gt;/etc/init.d/ossec restart&lt;/pre&gt;Finally - it is important to make sure that Asterisk is configured to log to syslog and restarted. The next commands to execute are:&lt;br/&gt;&lt;pre&gt;echo &quot;syslog.local0 =&amp;gt; notice,warning,error&quot; &amp;gt;&amp;gt; /etc/asterisk/logger.conf&lt;br/&gt;&lt;br/&gt;/etc/init.d/asterisk restart&lt;br/&gt;&lt;/pre&gt;Note: Check out &lt;span class=&quot;anon-comment-author&quot;&gt;&lt;a href=&quot;http://sipvicious.org/blog/2008/03/using-ossec-to-detect-attacks-on.html#8065701330545624696&quot;&gt;Laureano&#039;s post&lt;/a&gt; on how to just reload the logger configuration.&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;That&#039;s it. Note that this has been tested on a Trixbox VM and your Asterisk configuration might require some modifications since it appears that Asterisk log files are not so standard.&lt;br/&gt;&lt;br/&gt;Oh, and to test these rules you can obviously use &lt;a href=&quot;http://code.google.com/p/sipvicious/downloads/list&quot;&gt;SIPVicious tool suite&lt;/a&gt; ;-)</description>
            
            <pubDate>Sat, 15 Mar 2008 03:51:16 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSEC</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/OSSEC/bx40m</link>
            <description>Open Source Host-based Intrusion Detection System. Performs log analysis, interity checking, Windows registry monitoring, rootkit detection, real-time alerting and active response.`</description>
            
            <pubDate>Thu, 20 Dec 2007 19:58:53 -0800</pubDate>
        </item>
            
        <item>
            <title>Downloads</title>
            <link>http://swik.net/snort/del.icio.us%2Ftag%2Fsnort/Downloads/bjzgl</link>
            <description></description>
            
            <pubDate>Wed, 22 Aug 2007 05:15:28 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSIM (Open Source Security Information Management)</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/OSSIM+%28Open+Source+Security+Information+Management%29/5d8k</link>
            <description>Its goal is to provide a comprehensive compilation of tools which, when working together, grant a network/security administrator with detailed view over each and every aspect of his networks/hosts/physical access devices/server/etc...</description>
            
            <pubDate>Mon, 30 Apr 2007 12:36:34 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSIM (Open Source Security Information Management)</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/OSSIM+%28Open+Source+Security+Information+Management%29/0j1h</link>
            <description></description>
            
            <pubDate>Tue, 13 Mar 2007 02:34:17 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSEC HIDS - Open Source Security</title>
            <link>http://swik.net/snort/del.icio.us%2Ftag%2Fsnort/OSSEC+HIDS+-+Open+Source+Security/wc94</link>
            <description></description>
            
            <pubDate>Sat, 03 Feb 2007 03:06:28 -0800</pubDate>
        </item>
            
        <item>
            <title>OSSEC HIDS - Open Source Security</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/OSSEC+HIDS+-+Open+Source+Security/wc7y</link>
            <description></description>
            
            <pubDate>Sat, 03 Feb 2007 02:30:18 -0800</pubDate>
        </item>
            
        <item>
            <title>OSSEC HIDS - Open Source Security</title>
            <link>http://swik.net/snort/del.icio.us%2Ftag%2Fsnort/OSSEC+HIDS+-+Open+Source+Security/scyn</link>
            <description></description>
            
            <pubDate>Tue, 26 Dec 2006 20:27:53 -0800</pubDate>
        </item>
            
        <item>
            <title>SourceForge.net: aide</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/SourceForge.net%3A+aide/k90k</link>
            <description></description>
            
            <pubDate>Thu, 14 Sep 2006 03:14:11 -0700</pubDate>
        </item>
            
        <item>
            <title>OSSEC HIDS - Open Source Security</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/OSSEC+HIDS+-+Open+Source+Security/iwr3</link>
            <description></description>
            
            <pubDate>Tue, 08 Aug 2006 13:04:00 -0700</pubDate>
        </item>
            
        <item>
            <title>Tiger - The UNIX Security audit and intrusion detection tool</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Tiger+-+The+UNIX+Security+audit+and+intrusion+detection+tool/gxwi</link>
            <description></description>
            
            <pubDate>Mon, 10 Jul 2006 06:51:09 -0700</pubDate>
        </item>
            
        <item>
            <title>Snort - SWiK</title>
            <link>http://swik.net/snort/del.icio.us%2Ftag%2Fsnort/Snort+-+SWiK/fl7c</link>
            <description></description>
            
            <pubDate>Tue, 20 Jun 2006 15:13:31 -0700</pubDate>
        </item>
                </channel>
</rss>
