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

<channel>
	<title>Security Fight Club &#187; SQL Server</title>
	<atom:link href="http://www.securityfightclub.com/tag/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.securityfightclub.com</link>
	<description>Brought to you by Awareness Technologies</description>
	<lastBuildDate>Sat, 05 Jun 2010 04:08:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hackers have actually broken into the Brazilian Power Grid</title>
		<link>http://www.securityfightclub.com/hackers-have-actually-broken-into-the-brazilian-power-grid/</link>
		<comments>http://www.securityfightclub.com/hackers-have-actually-broken-into-the-brazilian-power-grid/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:43:54 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[External Threats]]></category>
		<category><![CDATA[SQL Injection]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Utility Companies]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=172</guid>
		<description><![CDATA[About a week ago 60 Minutes covered a story about hackers breaking into the Brazilian power grid and causing power outages through out the country.  The common believe is that this story wasn&#8217;t actually correct.  However hackers appear to have liked the idea, and have done what was originally claimed in the story.
Google has a [...]]]></description>
			<content:encoded><![CDATA[<p>About a week ago 60 Minutes covered a story about hackers breaking into the Brazilian power grid and causing power outages through out the country.  The common believe is that this story wasn&#8217;t actually correct.  However hackers appear to have liked the idea, and have done what was originally claimed in the story.<span id="more-172"></span></p>
<p>Google has a <a href="http://translate.google.com/translate?js=y&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;u=http%3A%2F%2Fg1.globo.com%2FNoticias%2FTecnologia%2F0%2C%2CMUL1380926-6174%2C00-HACKERS%2BINVADIRAM%2BSITE%2BDIZ%2BONS.html&amp;sl=pt&amp;tl=en" target="_blank">translation of the article</a>, and the <a href="http://g1.globo.com/Noticias/Tecnologia/0,,MUL1380926-6174,00-HACKERS+INVADIRAM+SITE+DIZ+ONS.html" target="_blank">original can be found here</a>.</p>
<p>The power company is question claims that the blackout which hit 18 Brazilian states on Tuesday was not caused by the hackers.  However the timing out the attack and the outage is very suspicious.  This just goes to show that utilities needs to take even more care that other companies to secure there environments to ensure that the services which they provide remain online as peoples live depend on the power staying on.</p>
<p>Based on the results of testing against the sites as reported <a href="http://darkreading.com/blog/archives/2009/11/how_to_hack_a_b.html;jsessionid=N4RKLB425E4DDQE1GHPSKHWATMY32JVN" target="_blank">by Darkreading</a> the standard SQL Injection attack may have been used in this case to attack the site and break in.  One would think that a company as large as a countries power company would be able to have developers which wouldn&#8217;t allow SQL Injection attacks.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/hackers-have-actually-broken-into-the-brazilian-power-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If the user doesn&#8217;t know the password a few times, lock&#8217;em out</title>
		<link>http://www.securityfightclub.com/if-the-user-doesnt-know-the-password-a-few-times-lockem-out/</link>
		<comments>http://www.securityfightclub.com/if-the-user-doesnt-know-the-password-a-few-times-lockem-out/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 18:43:39 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[Brute Force Cracking]]></category>
		<category><![CDATA[External Threats]]></category>
		<category><![CDATA[Internal Threats]]></category>
		<category><![CDATA[Passwords]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=121</guid>
		<description><![CDATA[One of the easiest things that you can do to keep people from guessing passwords is to slow them down.  Obviously I don&#8217;t mean do tell the person to try to log in less frequently, that just wouldn&#8217;t make any sense.  When someone is knocking on your computer&#8217;s door and trying a brute force password [...]]]></description>
			<content:encoded><![CDATA[<p>One of the easiest things that you can do to keep people from guessing passwords is to slow them down.  Obviously I don&#8217;t mean do tell the person to try to log in less frequently, that just wouldn&#8217;t make any sense.  When someone is knocking on your computer&#8217;s door and trying a brute force password attack, make them slow down.<span id="more-121"></span>Every system, either Internet facing or not (but especially Internet facing) should be configured so that if the wrong password is used to many times the account is automatically locked out for some period of time (more than a few minutes, less than a day) unless you have a secure way for users to verify who they are and reset there password.  If you have this sort of secure method to verify someone and reset there password, preferably in some sort of automated fashion you should do this and lock the account out until an administrator unlocks it (or customer service/help desk if this is your line of business app) or until the user resets the password.</p>
<p>In a perfect world this should be done at all layers of your application, both at the front end and at the back end.  At the front end, this is usually easy, as you control the application, and the code that goes into it.  Adding a module like this is pretty easy.  On the back end you&#8217;ve got less options available to you.  You are pretty much at the mercy of your database vendor on this one.</p>
<p>However the database vendors have heard our requests for more security in the platforms and they have begun to respond.  As an example <a href="http://www.microsoft.com/sql/" target="_blank">Microsoft SQL Server</a> has since the release of SQL Server 2005 included the ability to have the SQL Logons follow the same security requirements as Windows Logons on the Windows Active Directory domain.  (Other database vendors may offer similar features, but as I mostly use Microsoft SQL Server I&#8217;m not aware of them.  If you are please feel free to comment below.)</p>
<p>Now with this comes some risk.  Because if you were to enable these settings and someone did try to break into the database server using this account, the account would lock out.  This is both good and bad.  Its good because they aren&#8217;t able to continue the attack, however its also bad because your business application isn&#8217;t able to log into the database either.</p>
<p>Open source apps such as WordPress are starting to get these features added into them.  There&#8217;s a plugin for WordPress called &#8220;<a href="http://www.bad-neighborhood.com/" target="_blank">Login LockDown</a>&#8221; which allows the WordPress admin site to lock it self down if the same person gets the password wrong more than <em>n</em> number of times.  The options are totally configurable by the blog owner, so you can set your settings as high or as low as you want.</p>
<p>So, what&#8217;s the point of all this you ask?  It&#8217;s pretty simple, and it is easier when you look at the math.  Assume you wanted to attack a system which takes 1/10th of a second to check a password.  Using the characters on the standard keyboard (letters, numbers, symbols) you&#8217;ve got ~94 characters to work with.  Assuming an 4 character password of say &#8220;test&#8221; there are 78074896 character combination to try.  Assuming you try all the combination (just to make sure you get the correct password) it will take about 90 days to test all the options.  Now if every 5 failed attempts we lock the account for one hour that test times goes from 90 days to 3012 years (if I&#8217;m done my math correctly).</p>
<p>The next question then becomes, why would anyone take 90 days to break my password.  The answer is that they wouldn&#8217;t.  They would use more than one machine to reduce that 90 days down to a more manageable number.  If using 10 computers and you break with workload up evenly across the 10 computers that 90 days, is now 9 days.  20 computers will get it done in 4.5 days.  50 computers will get it done in 1.8 days.  All of a sudden by simply throwing a few computers at the problem the password gets broken very quickly.  Now longer passwords will make this take longer, but if you have a system which people really want to break into they could get access to one of the large <a href="http://en.wikipedia.org/wiki/Botnet" target="_blank">botnets</a> and have 100,000 computers work on breaking into your site.  Even with a very strong password, it wouldn&#8217;t take all that long to brute force your way into your passwords.</p>
<p>The only sure fire way to stop someone from brute forcing there way into your accounts is to lock those accounts after the password has been tried incorrectly several times.  Don&#8217;t make the limits to low that your customers can get into there own services, but don&#8217;t make them so loose that people can break into those services.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/if-the-user-doesnt-know-the-password-a-few-times-lockem-out/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keep your databases off the Internet</title>
		<link>http://www.securityfightclub.com/keep-your-databases-off-the-internet/</link>
		<comments>http://www.securityfightclub.com/keep-your-databases-off-the-internet/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 02:46:55 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[Attack Scripts]]></category>
		<category><![CDATA[Brute Force Cracking]]></category>
		<category><![CDATA[Data Loss]]></category>
		<category><![CDATA[Endpoints]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[Listeners]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Routers]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Service Broker]]></category>
		<category><![CDATA[ACLs]]></category>
		<category><![CDATA[Endpoint]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[Internet Access]]></category>
		<category><![CDATA[Listener]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=99</guid>
		<description><![CDATA[There are way to many people who keep there database servers available from the public Internet.  This is just a disaster waiting to happen.
Your database holds all of your data.  If someone was to great into your database server they would have access to view, and possibly delete all your data forcing you to restore [...]]]></description>
			<content:encoded><![CDATA[<p>There are way to many people who keep there database servers available from the public Internet.  This is just a disaster waiting to happen.<span id="more-99"></span></p>
<p>Your database holds all of your data.  If someone was to great into your database server they would have access to view, and possibly delete all your data forcing you to restore your data from your backup.  In a perfect world there would be no database servers directly accessible from the Internet.  There is pretty much no reason for database servers to be directly accessible from the Internet.</p>
<p>If your servers are CoLo&#8217;d then setup a VPN between your office and the CoLo, or VPN directly into the CoLo.  There are some hosting providers which prefer to setup the servers on public IPs, however most of them will if requested use private IPs and configure a Site to Site VPN connection for you.</p>
<p>Pretty much the only times that a database needs to be on the Internet would be if you are replicating data between servers as this will typically require that at least one of the servers be on the public Internet.  SQL Service Broker can need to be on the public Internet as well.  However in both of these cases, you don&#8217;t need to give the server a public IP.  You can give the server a private IP, and NAT the server from the Internet to the private IP.  However make sure that only the correct port or ports are open through the firewall.</p>
<p>In Oracle this should be done by setting up a new listener.  In SQL Server this is done by setting up a new endpoint either for general connection, or in the case of Service Broker an Endpoint is used to connect to, which listens on a seperate TCP port.  When setting up these listeners or endpoints make sure that only the accounts which need to have access to them have access.  This way the minimal attack surface is avaialble from the Internet.  In addition you will want to setup your firewall or router ACLs to allow only the required public IP addresses to have access to the listener or endpoint.</p>
<p>With your database being publicly available attack scripts could attack for it, or people could manually try and break in.  With SQL Server running in mixed mode, and with Oracle there are accounts which can be brute forced which have well known usernames such as system and sa.  When SQL Server is running in Windows only mode breaking in is harder, but not impossible.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/keep-your-databases-off-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who’s been logging into my SQL Server?</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/whos-been-logging-into-my-sql-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/whos-been-logging-into-my-sql-server/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:53:45 +0000</pubDate>
		<dc:creator>SQL Server with Mr. Denny &#62; Security » Security</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Failed Login Auditing]]></category>
		<category><![CDATA[SQL Server with mrDenny]]></category>

		<guid isPermaLink="false">tag:itknowledgeexchange.techtarget.com://afc8098fb36e7bb24618dd30dc002031</guid>
		<description><![CDATA[Knowing who has been logging into your SQL Server is one of the key things to know about your SQL Server.  It lets you know quite a bit about who’s using your server, and about who’s been trying to break into your SQL Server, and most importantly if they have ...]]></description>
			<content:encoded><![CDATA[Knowing who has been logging into your SQL Server is one of the key things to know about your SQL Server.  It lets you know quite a bit about who’s using your server, and about who’s been trying to break into your SQL Server, and most importantly if they have ...]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/who%e2%80%99s-been-logging-into-my-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whitepaper on why database maintenance is important</title>
		<link>http://www.securityfightclub.com/whitepaper-on-why-database-maintenance-is-important/</link>
		<comments>http://www.securityfightclub.com/whitepaper-on-why-database-maintenance-is-important/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 01:50:26 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Database Maintenance Best Practices]]></category>
		<category><![CDATA[Performance Tuning]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=148</guid>
		<description><![CDATA[Today I&#8217;m publishing a white paper which I wrote for our Customer Service department to give to our customers.  It explains why database maintenance is so important in keeping your database happy and healthy.The white paper is entitled &#8220;Database Maintenance Best Practices&#8221;.  The paper doesn&#8217;t go into detail as to what commands to run, but [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m publishing a white paper which I wrote for our Customer Service department to give to our customers.  It explains why database maintenance is so important in keeping your database happy and healthy.<span id="more-148"></span>The white paper is entitled &#8220;Database Maintenance Best Practices&#8221;.  The paper doesn&#8217;t go into detail as to what commands to run, but gives a good high level overview (with some technical details) as to what needs to be done, and more importantly why.</p>
<p>The white paper is available free of charge to anyone who want to <a title="Database Maintenance Best Practices" href="/downloads/Database Maintenance Best Practices.pdf" target="_blank">download</a> it.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/whitepaper-on-why-database-maintenance-is-important/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gonzalez (TJ Max Hacker) gets 15-25 years</title>
		<link>http://www.securityfightclub.com/gonzalez-tj-max-hacker-gets-15-25-years/</link>
		<comments>http://www.securityfightclub.com/gonzalez-tj-max-hacker-gets-15-25-years/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 11:18:41 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[Data Loss]]></category>
		<category><![CDATA[External Threats]]></category>
		<category><![CDATA[SQL Injection]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[TJ Max]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=145</guid>
		<description><![CDATA[As a follow up to my post last week about the TJ Max Hacker, it appears that Albert Gonzalez has accepted a plea deal with federal prosecutors.  He has plead guilty to 19 counts, which will result in the combination of two of his current cases which were pending in New York and Massachusetts.  The [...]]]></description>
			<content:encoded><![CDATA[<p>As a follow up to my post last week about the <a href="http://www.securityfightclub.com/more-charges-filed-against-tjmax-hackers/" target="_blank">TJ Max Hacker</a>, it appears that Albert Gonzalez has accepted a plea deal with federal prosecutors.  He has plead guilty to 19 counts, which will result in the combination of two of his current cases which were pending in New York and Massachusetts.  The recent charges against him in Federal court in New Jersey are not included in this plea deal.<span id="more-145"></span></p>
<p>His lawyer claimed that he is &#8220;extremely remorseful as to what has happened&#8221; in a statement to the AP on Thursday.  Personally I think that he&#8217;s remorseful that he was caught, not that he swindled and stole, but that&#8217;s just me.</p>
<p>As part of the plea dea Gonzalez must forfeit his computers, home, car and cash, in addition to the $1.1 million that federal agents found buried in his parents back yard.  His girl friend, her father and friends also have to turn over to authorities watches and jewelry which Gonzalez gave them as gifts.</p>
<p>Under the terms of his plea deal Gonzalez will be behind bars for 15 to 25 years (reality 7-10 years with good behavior and early release).  His computer usage will be restricted for 5 years post release (which probably means not a whole hell of a lot).  If convicted at trial Gonzalez could have been sentenced to several hundred years, effectively a life sentence.</p>
<p>May he enjoy the next 7 years of his life in club fed.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/gonzalez-tj-max-hacker-gets-15-25-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More charges filed against TJMax hackers</title>
		<link>http://www.securityfightclub.com/more-charges-filed-against-tjmax-hackers/</link>
		<comments>http://www.securityfightclub.com/more-charges-filed-against-tjmax-hackers/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:27:14 +0000</pubDate>
		<dc:creator>mrdenny</dc:creator>
				<category><![CDATA[Data Loss]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Unauthorized Installation]]></category>
		<category><![CDATA[SQL Injection]]></category>
		<category><![CDATA[TJ Max]]></category>

		<guid isPermaLink="false">http://www.securityfightclub.com/?p=136</guid>
		<description><![CDATA[It appears that yesterday more charges were filed against  the TJ Max hacker Albert “Segvec” Gonzalez.  These new charges stem from electronic break-ins to the Heartland Payment Systems credit card processing center as well as Hannaford Brothers, 7-Eleven as well as two additional un-named victims.
Gonzalez, who is a former US Secret Service informant, is already [...]]]></description>
			<content:encoded><![CDATA[<p>It appears that yesterday more charges were filed against  the TJ Max hacker <a href="http://www.wired.com/threatlevel/2009/08/tjx-hacker-charged-with-heartland/" target="_blank">Albert “Segvec” Gonzalez</a>.  These new charges stem from electronic break-ins to the Heartland Payment Systems credit card processing center as well as Hannaford Brothers, 7-Eleven as well as two additional un-named victims.<span id="more-136"></span></p>
<p>Gonzalez, who is a former US Secret Service informant, is already in custody on charges related to the TJ Max break in.  Also charged as two unnamed Russian persons who are suspected of being Gonzalez&#8217;s partners in the operation.</p>
<p>Based on information released these attacks do not appear to be the standard &#8220;script kiddy attacks&#8221; that we as sysadmins are used to dealing with.  These attacks were well thought out and well executed, granting the attackers access to corporate and production networks for months in some cases.</p>
<p>The software, which was custom written for these attacks when tested against a variety of anti-virus and anti-spyware software before the attack was launched.  Additionally it was written to delete all trace of itself in order to avoid detection.</p>
<p>The truly pathetic thing about this is that according to the documents, the attacks all started via SQL Injection attacks.  Which means that they could have been avoided if basic security protocols and procedures were being followed on the websites in question.  These basic security protocols include:</p>
<ul>
<li>No dynamic SQL either in stored procedures or from the websites directly.</li>
<li>If dynamic SQL must be used in stored procedures, use as few actual values from the Website as possible.  (For example if sorting a result set which must be done through dynamic SQL don&#8217;t pass in the column name from the website, pass in an ID which means nothing except that the stored procedures knows that 1 = Column2, 2 = Column4, etc.</li>
<li>Clean the data before you pass it to the database.  This is where the website developers and the DBAs really need to get along.  The database can&#8217;t secure it self, the Website has to check each value that is being passed in and ensure that the values won&#8217;t harm the database in any way.</li>
<li>Disable xp_cmdshell as well as anything else that you aren&#8217;t using (oh yeah and don&#8217;t use xp_cmdshell on SQL Servers that websites have access to).</li>
<li>Don&#8217;t allow the account that the website uses to do anything more than it needs.  This means not using ANY fixed server or fixed database roles.  Just the minimum rights that are possible, in a perfect world this means execute rights to stored procedures only.</li>
</ul>
<p>If these basic rules had been followed then the hackers probably wouldn&#8217;t have been able to get into the system and we wouldn&#8217;t have had these problems to begin with.</p>
<p>It also would have helped if these companies were actually following the PCI rules which they are required to follow but apparently weren&#8217;t.  If they were then this wouldn&#8217;t have been an issue either as they wouldn&#8217;t have been storing anything, and everything in flight would have been encrypted and basically worthless.</p>
<p>Denny</p>
]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/more-charges-filed-against-tjmax-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why should the DBA care about Network Firewalls?</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/why-should-the-dba-care-about-network-firewalls/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/why-should-the-dba-care-about-network-firewalls/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 23:48:11 +0000</pubDate>
		<dc:creator>SQL Server with Mr. Denny &#62; Security » Security</dc:creator>
				<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SQL Server with mrDenny]]></category>

		<guid isPermaLink="false">tag:itknowledgeexchange.techtarget.com://7060d8e67aa2a64df3a3260bac06b79a</guid>
		<description><![CDATA[All to often I see people online asking some sort of question about connecting to their CoLo'ed SQL Server and they connect directly over the Internet.  This is nuts people.  If you can access your SQL Server via Management Studio from anywhere on the Internet so can people who would ...]]></description>
			<content:encoded><![CDATA[All to often I see people online asking some sort of question about connecting to their CoLo'ed SQL Server and they connect directly over the Internet.  This is nuts people.  If you can access your SQL Server via Management Studio from anywhere on the Internet so can people who would ...]]></content:encoded>
			<wfw:commentRss>http://www.securityfightclub.com/why-should-the-dba-care-about-network-firewalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
