<?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>Software Associates. &#187; data security</title>
	<atom:link href="http://www.software.co.il/tag/data-security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.software.co.il</link>
	<description>Security and compliance specialists for medical device and healthcare companies</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:36:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Encryption, a buzzword, not a silver bullet</title>
		<link>http://www.software.co.il/2012/02/encryption-a-buzzword-not-a-silver-bullet/</link>
		<comments>http://www.software.co.il/2012/02/encryption-a-buzzword-not-a-silver-bullet/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 17:13:48 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Information security]]></category>
		<category><![CDATA[PCI DSS]]></category>
		<category><![CDATA[Risk mitigation]]></category>
		<category><![CDATA[Application security]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[data security breaches]]></category>
		<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://www.software.co.il/?p=4350</guid>
		<description><![CDATA[Encryption,  buzzword, not a silver bullet for protecting data on your servers. In order to determine how encryption fits into server data protection, consider 4 encryption components on the server side: passwords, tables, partitions and  inter-tier socket communications. In these 4 components of a application / database server encryption policy, note that some countermeasures are ...]]></description>
			<content:encoded><![CDATA[<p>Encryption,  buzzword, not a silver bullet for protecting data on your servers.</p>
<p>In order to determine how encryption fits into server data protection, consider 4 encryption components on the server side: passwords, tables, partitions and  inter-tier socket communications.</p>
<p>In these 4 components of a application / database server encryption policy, note that some countermeasures are required (for example one-way hashes of passwords, while other such as encrypting specify table columns may or may not be relevant to a particular application).</p>
<h3>1. Encrypted password storage</h3>
<p>You must encrypt passwords. It&#8217;s surprising to me how many Web sites don&#8217;t bother encrypting user passwords &#8211; See cases <a title="clear text passwords" href="http://datalossdb.org/incidents/5561-160-e-mail-addresses-and-clear-text-passwords-dumped-on-internet" target="_blank">Universal Music Portugal</a> where e-mail addresses and clear-text passwords are dumped on Internet.</p>
<p>What is more surprising is the confusion between encryption and hashing.</p>
<p>Don&#8217;t use AES for encrypting passwords in your MySQL or Oracle or MS SQL database.  You&#8217;ll end up storing the AES key somewhere in the code and an attacker or malicious insider can read the key by opening up one of your application DLLs in Notepad++ and read that key in a jiffy and breach your entire MySQL database with a single SELECT statement.</p>
<p>Database user passwords should be stored as MD5 hashes, so that a user  (such as a DBA) who has been granted SELECT access to the table (typically called &#8216;users&#8217;)  cannot determine the actual password. Make sure that different instances have different salts and include some additional information in the hash.</p>
<p>If you use MD5 encryption for client authentication, make sure that  the client hashes the password with MD5 before sending the data on the network.</p>
<h3>2. Encrypt specific database table columns</h3>
<p>The PostgreSQL 9.1 <a href="http://www.postgresql.org/docs/9.1/interactive/pgcrypto.html">pgcrypto</a> module allows certain fields to be stored encrypted. This is especially useful if some of the data is sensitive for example in the case of ePHI where the Web application needs to comply with the CFR 45 Appendix A Security rule. The client software provides the decryption key and the data is decrypted on the server and then sent to the client.  In most cases the client (a database driver in an MVC application such as Ruby on Rails or CakePHP or ASP.NET MVC is also a server side resource and often lives on the same physical server as the database server. This is not a <strong>bad</strong> thing.</p>
<h3>3. Encrypt entire data partitions</h3>
<p>Encrypting entire data partitions has its place.</p>
<p>On Linux, encryption can be layered on top of a file system using a &#8221;loopback device&#8221;. This allows an entire file system partition to be encrypted on disk, and decrypted by the operating system. Many operating systems support this functionality, including Windows.</p>
<p>Encrypting entire partitions is a security countermeasure for physical attacks, where the entire computer is stolen. Research we did in 2007 indicated that almost 50% of large volume data breaches employed a physical attack vector (stealing a notebook at a hotel checkin desk, hijacking a truck transporting backup tapes to Iron Mountain and smash and grab jobs where thieves know the rent-a-cop walkaround schedule and break in and steal desktop computers.</p>
<p>On the other hand, once the volume is mounted,  the data is visible.</p>
<h3>4. Encrypt socket communications between server tiers</h3>
<p>SSL has it&#8217;s place, although SSL is not a silver bullet countermeasure for Microsoft Windows vulnerabilities and mobile medical devices vulnerabilities as I wrote <a title="Why windows is a bad idea for medical devices" href="http://www.software.co.il/wordpress/2011/06/why-microsoft-windows-is-a-bad-idea-for-medical-devices/" target="_blank">here</a>, <a title="Why using Azure is a bad idea for medical device vendors" href="http://www.software.co.il/wordpress/2011/06/the-connection-between-application-performance-and-security-in-the-cloud/" target="_blank">here</a> and <a title="Why outlawing windows from embedded medical devices is a good idea" href="http://www.software.co.il/wordpress/2011/06/why-outlawing-windows-from-embedded-medical-devices-is-a-good-idea/" target="_blank">here</a>.</p>
<p>SSL connections encrypt all data sent across the network: the password, the queries, and the data returned. In database client-server connections,  relational database systems such as PostgreSQL allow administrators to specify which hosts can use non-encrypted connections (<tt>host</tt>) and which require SSL-encrypted connections (<tt>hostssl</tt>). Also, clients can specify that they connect to servers only via SSL. Stunnel or SSH can also be used to encrypt transmissions.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2012/02/encryption-a-buzzword-not-a-silver-bullet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Security is in the cracks</title>
		<link>http://www.software.co.il/2011/12/security-is-in-the-cracks/</link>
		<comments>http://www.software.co.il/2011/12/security-is-in-the-cracks/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:10:19 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Information security]]></category>
		<category><![CDATA[business threat modeling]]></category>
		<category><![CDATA[Cloud computing]]></category>
		<category><![CDATA[Cloud security]]></category>
		<category><![CDATA[data security]]></category>

		<guid isPermaLink="false">http://www.software.co.il/?p=4129</guid>
		<description><![CDATA[Yesterday I spent most of the day re-installing one of the  workstation in the office with Ubuntu 11.10. I like what I saw, but the Unity interface is not my cup of tea so I installed Gnome &#8211; what they call Classic Ubuntu. In principle I shut down as many operating services as I can ...]]></description>
			<content:encoded><![CDATA[<p>Yesterday I spent most of the day re-installing one of the  workstation in the office with Ubuntu 11.10. I like what I saw, but the Unity interface is not my cup of tea so I installed Gnome &#8211; what they call Classic Ubuntu.</p>
<p>In principle I shut down as many operating services as I can &#8211; especially those that call out and/or listen on the Internet but this is supposed to be a development machine with access to our private git repository and sending out email via a Postfix relay.</p>
<p>On our own  small scale of a lab with 6-7 machines for testing network and software security of customer applications, I  got  thinking that most system vulnerabilities live in the cracks of system integration of components and packaged software while<em><strong> most of the industry&#8217;s efforts in software security are directed towards new software implementations.</strong></em></p>
<div>
<div>
<p>If you are preparing to implement a packaged application for financial management, CRM, data mining or ERP something in the back of your mind probably says that the vendor&#8217;s development organization is probably not a lot different than yours (although you hope they&#8217;ve thought through the security issues first)..</p>
<p>Here are a 2 ideas to help find the crud in the cracks:</p>
<ul>
<li>Inspect and penetration-test the system; assess infrastructure components, database interfaces and Web applications for vulnerabilities using <a title="6 step business threat analysis methodology" href="http://www.software.co.il/services/the-6-step-business-threat-analysis-methodology/" target="_blank">The Software Associates 6 step Business threat analysis methodology</a></li>
<li>You need to identify fault-prone modules in your particular operation and evaluate those modules with the most impact on system reliability and downtime.</li>
</ul>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/12/security-is-in-the-cracks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why less log data is better</title>
		<link>http://www.software.co.il/2011/09/why-less-log-data-is-better/</link>
		<comments>http://www.software.co.il/2011/09/why-less-log-data-is-better/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 20:32:31 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Anti-Fraud]]></category>
		<category><![CDATA[Compliance]]></category>
		<category><![CDATA[Data leakage]]></category>
		<category><![CDATA[Data loss]]></category>
		<category><![CDATA[Data retention]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[PCI DSS]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3727</guid>
		<description><![CDATA[Been a couple weeks since I blogged &#8211; have my head down on a few medical device projects and a big PCI DSS audit where I&#8217;m helping the client improve his IT infrastructure and balance the demands of the PCI auditors. Last year I gave a talk on quantitative methods for estimating operational risk of ...]]></description>
			<content:encoded><![CDATA[<p>Been a couple weeks since I blogged &#8211; have my head down on a few medical device projects and a big PCI DSS audit where I&#8217;m helping the client improve his IT infrastructure and balance the demands of the PCI auditors.</p>
<p>Last year I gave a talk on quantitative methods for estimating operational risk of information systems in the annual European GRC meeting in Lisbon &#8211; you can see the presentation below.</p>
<p>As a I noted in my talk, one of the crucial phases in estimating operational risk is data collection: understanding what threats, vulnerabilities you have and understanding not only what assets you have (digital, human, physical, reputational) but also how much they&#8217;re worth in dollars.</p>
<p>Many technology people interpret data collection as some automatic process that reads/scans/sniffs/profiles/processes/analyzes/compresses log files, learning and analyzing the data using automated  algorithms like ANN (adaptive neural networks).</p>
<p>The automated log profiling tool will then automagically tell you where you have vulnerabilities and using &#8220;<em>an industry best practice database of security countermeasures&#8221;</em>,  build you a risk mediation plan. Just throw in a dash of pie charts and you&#8217;re good to go with the CFO.</p>
<p>This was in fashion about 10 years ago (Google automated audit log analysis and you&#8217;ll see what I mean) for example this <a title="Automated audit trail analysis" href="http://books.google.com/books/about/Automated_audit_trail_analysis_and_intru.html?id=NPREHAAACAAJ" target="_blank">reference on automated audit trail analysis</a>,  Automated tools are good for getting a quick indication of trends, and  tend to suffer from poor precision and recall that  improve rapidly when combined with human eyeballs.</p>
<p>The PCI DSS council in Europe (private communication) says that over 80% of the merchants/payment processors with data breaches  discovered their data breach  3 months or more after the event. Yikes.</p>
<p>So why does maintaining 3 years of log files make sense &#8211; quoted from PCI DSS 2.0</p>
<pre>10.7 Retain audit trail history for at least
one year, with a minimum of three
months immediately available for
analysis (for example, online, archived,
or restorable from back-up).
10.7.a Obtain and examine security policies and procedures and
verify that they include audit log retention policies and require
audit log retention for at least one year.
10.7.b Verify that audit logs are available for at least one year and
processes are in place to immediately restore at least the last
three months’ logs for analysis</pre>
<p>Wouldn&#8217;t it be a lot smarter to say -</p>
<p><em>10.1 Maintain a 4 week revolving log with real-time exception reports as measured by no more than 5 exceptional events/day.</em></p>
<p><em>10.2 Estimate the financial damage of the 5 exceptional events in a weekly 1/2 meeting between the IT manager, finance manager and security officer.</em></p>
<p><em>10.3 Mitigate the most severe threat as measured by implementing 1 new security countermeasure/month (including the DLP and SIEM systems you bought last year but haven&#8217;t implemented yet)</em></p>
<p><em><br />
</em></p>
<p>I&#8217;m a great fan of technology, but the human eye and brain does it best.</p>
<div id="__ss_9166974" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="The Tao of GRC" href="http://www.slideshare.net/dannyl50/the-tao-of-grc" target="_blank">The Tao of GRC</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/9166974" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="355"></iframe></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/dannyl50" target="_blank">Software Associates</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/09/why-less-log-data-is-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will security turn into a B2B industry?</title>
		<link>http://www.software.co.il/2011/08/will-security-turn-into-a-b2b-industry/</link>
		<comments>http://www.software.co.il/2011/08/will-security-turn-into-a-b2b-industry/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 13:40:16 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Risk management]]></category>
		<category><![CDATA[Risk mitigation]]></category>
		<category><![CDATA[Software security]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[HIPAA]]></category>
		<category><![CDATA[IT Governance]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[Verdasys]]></category>
		<category><![CDATA[Websense]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3718</guid>
		<description><![CDATA[Information security is very much product driven and very much network perimeter security driven at that:   firewalls, IPS, DLP, anti-virus, database firewalls, application firewalls, security information management systems and more. It is convenient for a customer to buy a product and feel &#8220;secure&#8221; but, as businesses become more and more interconnected, as cloud services ...]]></description>
			<content:encoded><![CDATA[<p>Information security is very much product driven and very much network perimeter security driven at that:   firewalls, IPS, DLP, anti-virus, database firewalls, application firewalls, security information management systems and more.</p>
<p>It is convenient for a customer to buy a product and feel &#8220;secure&#8221; but, as businesses become more and more interconnected, as cloud services percolate deeper and deeper into organizations, and as  government compliance regulation becomes more complex and pervasive; the security &#8220;problem&#8221; becomes more difficult to solve and even harder to sell.</p>
<p>I believe that there are 3 reasons why it&#8217;s hard to sell security:</p>
<p>The first is that it&#8217;s complex stuff, hard to explain and even harder to build a cost-justified security countermeasure plan and measure security ROI.  The nonsense propagated by security vendors like Symantec and Websense do little to improve the situation and only exacerbate the low level of credibility for security product effectiveness with  pseudo science and ROI calculations written by wet-behind-the-ears English majors marcom people who freelance for security vendors &#8211; as I&#8217;ve noted in previous posts <a title="Mcafee embedded security" href="http://www.software.co.il/wordpress/2010/09/mcafee-embedded-device-security/" target="_blank">here</a>, <a title="would you buy a used car from this company+" href="http://www.software.co.il/wordpress/2009/01/would-you-buy-a-used-car-from-this-company/" target="_blank">here</a>, <a title="More nonsense with numbers" href="http://www.software.co.il/wordpress/2010/08/more-nonsense-with-numbers/" target="_blank">here</a> and <a title="DIlbert" href="http://www.software.co.il/wordpress/2009/05/scientific-new-york-post/" target="_blank">here</a>.</p>
<p>The second is related to <a title="Prospect theory" href="http://en.wikipedia.org/wiki/Prospect_theory" target="_blank">prospect theory</a>. A CEO is risk hungry for a high impact, low probability event (like an <a title="message queue insecurity" href="http://www.software.co.il/wordpress/2011/08/message-queuing-insecurity/" target="_blank">attack on his message queuing</a> transaction processing systems) or theft of IP by a competitior and risk averse to low impact, high probability events like malware and garden variety dictionary attacks on every ssh service on the Net.</p>
<p>The third is related to psychology.   Why is it a good idea to cold call a CIO and tell him that the multi-million dollar application his business developed is highly vulnerable?    Admitting that his software is vulnerable and going to the board to ask for big bucks to fix the problem is tantamount to admitting that he didn&#8217;t do his job and that someone else should pay the price.  Very bad idea.</p>
<p>This is why cloud services are a hit.</p>
<p>Security is baked into the service. You pay for the computing/storage/messaging resource like you buy electricity. The security is &#8220;someone else&#8217;s problem&#8221;  and let&#8217;s face it, the security professionals at Rackspace or Amazon or Google App Engine are better at security than we are. It&#8217;s part of their core business.</p>
<p>The next step after cloud services is the security industry evolving into a B2B industry like the automotive or energy industry.  You don&#8217;t buy brakes from a McAfee and a car from Checkpoint &#8211; you buy a car from GM and brakes are part of the system.</p>
<p>That&#8217;s where we need to go &#8211; building the security into the product instead of bolting it on as an after-sale extra</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/08/will-security-turn-into-a-b2b-industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using DLP to prevent credit card breaches</title>
		<link>http://www.software.co.il/2011/07/using-dlp-to-prevent-credit-card-breaches/</link>
		<comments>http://www.software.co.il/2011/07/using-dlp-to-prevent-credit-card-breaches/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 14:17:47 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[PCI DSS]]></category>
		<category><![CDATA[data loss prevention]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[DLP]]></category>
		<category><![CDATA[payment cards]]></category>
		<category><![CDATA[PCI DSS 2.0]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3645</guid>
		<description><![CDATA[I think that Data Loss Prevention is great way to detect and prevent payment card and PII data breaches. Certainly, all the DLP vendors think so.  Only problem is, the PCI DSS Council doesn&#8217;t even have DLP in their standard which pretty much guarantees zero regulatory tail wind for DLP sales to payment card industry ...]]></description>
			<content:encoded><![CDATA[<p>I think that Data Loss Prevention is great way to detect and prevent payment card and PII data breaches.</p>
<p>Certainly, all the DLP vendors think so.  Only problem is, the PCI DSS Council doesn&#8217;t even have DLP in their standard which pretty much guarantees zero regulatory tail wind for DLP sales to payment card industry players.</p>
<p>I&#8217;m actually impressed that Symantec didn&#8217;t manage to influence the PCI DSS council to include DLP in the standard. An impressive display of professional integrity and technology blindness.</p>
<p>A while back, we did a software security assessment for a player in the online transaction space.</p>
<p>When I asked the client and auditor what kind of real time data loss monitoring they have in place, just in case, they have a bug in their application and/or one of their business partners or trusted insiders steals data, the answers where like &#8220;umm, sounds like a good idea but it is not required by PCI DSS 2.0&#8243;</p>
<p>And indeed the client is correct.</p>
<blockquote><p>PCI DSS 2.0 does not require outbound, real time or any other kind of data loss monitoring.</p>
<p>The phrases &#8220;real time&#8221; and &#8220;data loss&#8221; don&#8217;t appear in the standard. The authors of the standard like file-integrity monitoring but in an informal conversation with a PCI DSS official in the region, he confessed to not being familiar with DLP.</p></blockquote>
<p>Here are a few PCI  monitoring requirements.</p>
<p>None of these controls <strong><em>directly protect</em></strong> the the payment card from being breached. They are all indirect controls and very focused on external attackers &#8211; not on trusted insiders nor business partners.</p>
<ol>
<li>Use file-integrity monitoring or change-detection software on logs to ensure that existing log data cannot be changed without generating alerts (although new data being added should not cause an alert).</li>
<li>If automated monitoring of wireless networks is utilized (for example, wireless IDS/IPS, NAC, etc.), verify the configuration will generate alerts to personnel.</li>
<li>Deploy file-integrity monitoring tools to alert personnel to unauthorized modification of critical system files, configuration files, or content files; and configure the software to perform critical file comparisons at least weekly.</li>
<li>Monitor and analyze security alerts and information, and distribute to appropriate personnel.</li>
<li>Verify through observation and review of policies, that designated personnel are available for 24/7 incident response and monitoring coverage for any evidence of unauthorized activity, detection of unauthorized wireless access points, critical IDS alerts, and/or reports of unauthorized critical system or content file changes.</li>
</ol>
<p>Oh man.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/07/using-dlp-to-prevent-credit-card-breaches/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why Microsoft Windows is a bad idea for medical devices</title>
		<link>http://www.software.co.il/2011/06/why-microsoft-windows-is-a-bad-idea-for-medical-devices/</link>
		<comments>http://www.software.co.il/2011/06/why-microsoft-windows-is-a-bad-idea-for-medical-devices/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 11:20:10 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Physical security]]></category>
		<category><![CDATA[Application security]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[FDA]]></category>
		<category><![CDATA[HIPAA]]></category>
		<category><![CDATA[medical devices]]></category>
		<category><![CDATA[Security engineering]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3597</guid>
		<description><![CDATA[I&#8217;m getting some push back on LinkedIn on my articles on banning Microsoft Windows from medical devices that are installed in hospitals &#8211; read more about why Windows is a bad idea for medical devices here and here. Scott Caldwell tells us that the FDA doesn’t rule “out” or “in” any particular technology, including Windows ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting some push back on LinkedIn on my articles on banning Microsoft Windows from medical devices that are installed in hospitals &#8211; read more about why Windows is a bad idea for medical devices <a title="Why outlawing windows from medical devices is a good idea" href="http://www.software.co.il/wordpress/2011/06/why-outlawing-windows-from-embedded-medical-devices-is-a-good-idea/" target="_blank">here</a> and <a title="Why the Microsoft monoculture is a threat to national security" href="http://www.software.co.il/wordpress/2011/06/the-microsoft-monoculture-as-a-threat-to-national-security/" target="_blank">here</a>.</p>
<p><a title="See this member's activity" href="http://www.linkedin.com/groups?viewMemberFeed=&amp;gid=3287843&amp;memberID=611820">Scott Caldwell</a> tells us that the FDA doesn’t rule “out” or “in” any particular technology, including Windows Embedded.</p>
<p>Having said that, Microsoft has very clear language in their EULA regarding the use of Windows Embedded products:</p>
<blockquote><p>“The Products are not fault-tolerant and are not designed, manufactured or intended for any use requiring fail-safe performance in which the failure of a Product could lead to death, serious personal injury, severe physical or environmental damage (“High Risk Activities”).”</p></blockquote>
<p>Medical device vendors  that  use Windows operating systems for less critical devices, or for the user interface are actually increasing the threat surface for a hospital, since any Windows host can be a carrier of malware that can take down the entire hospital network, regardless of it&#8217;s primary mission function, be it user-friend UI at a nursing station or intensive care monitor at the bedside.</p>
<p>Medical device vendors that use Microsoft IT systems management &#8220;best-practices&#8221; often  take the approach of &#8220;bolting-on&#8221; third party solutions for anti-virus and software distribution instead of developing robust, secure software, &#8220;from the ground up&#8221; with a secure design, threat analysis, software security assessment and secure software implementation.</p>
<p>Installing third-party security solutions that need to be updated in the field, may be inapplicable to an embedded medical device as the MDA (Medical Device Amendments of 1976) clearly states:</p>
<blockquote><p>These devices may enter the market only if the FDA reviews their design, labeling, and manufacturing specifications and determines that those specifications provide a reasonable assurance of safety and effectiveness. <em>Manufacturers may not make changes to such devices that would affect safety or effectiveness unless they first seek and obtain permission from the FDA</em>.</p></blockquote>
<p>It&#8217;s common knowledge that medical device technicians use USB flash drives and notebook computers to update medical devices in the hospital. Given that USB devices and Windows computers are notoriously vulnerable to viruses and malware, there is a reasonable threat that a field update may infect the Windows-based medical device. If the medical device is isolated from the rest of hospital network, then the damage is  localized, but if the medical device is networked to an entire segment, then all other Windows based computers on that segment may be infected as well &#8211; propagating to the rest of the hospital in a cascade attack.</p>
<blockquote><p>It&#8217;s better to get the software security right than to try and bolt in security after the implementation.Imagine that you had to buy the brakes for a new car and install them yourself after you got that bright new Lexus.</p></blockquote>
<p>It is not unusual for medical device vendors to fall victim to the same Microsoft marketing messages used with enterprise IT customers &#8211; &#8220;lower development costs, and faster time to market&#8221; when in fact, Windows is so complex and vulnerable that the smallest issue may take a vendor months to solve. For example &#8211; try and get Windows XP to load the wireless driver without the shell.   Things that may take months to research and resolve in Windows are often easily solved in Linux with some expertise and a few days work. That&#8217;s why you have professional medical device  software security specialists like <a title="Software security specialists for medical device vendors" href="http://www.software.co.il" target="_blank">Software Associates</a>.</p>
<p>With Windows, you get an application up and running quickly, but it is never as reliable and secure as you need.</p>
<p>With Linux, you need expertise to get up and running, and once it works, it will be as reliable and secure as you want.</p>
<p><a title="See this member's activity" href="http://www.linkedin.com/groups?viewMemberFeed=&amp;gid=3287843&amp;memberID=37404955">Yves Rutschle</a> says that <em>outlawing Microsoft Windows from medical devices in hospitatls  sounds too vendor-dependant to be healthy</em> (sic) <em>(</em>Seems to me that this would make the medical device industry LESS vendor-dependent, not more vendor-dependent, considering the number of embedded Linux options out there.)</p>
<p>Yves suggests that instead, the FDA should create a &#8220;<em>proper medical device certification cycle. If you lack of inspiration, ask the FAA how they do it, and maybe make the manufacturers financially responsible for any software failure impact, including death of a patient</em>&#8220;. (The FDA does not certify medical devices, they grant pre-market approval).</p>
<p>I like a free market approach but consider this:</p>
<ul>
<li>Bruce Schneier proposed adopting Federal legislation to make companies pay for security breaches &#8211; the proposal never got traction. Today, the Obama administration might adopt the idea as being in the same spirit of <a title="http://montanafirealliance.org/treasury-to-temporarily-penalize-mortgage-companies-making-good-on-old-threat/" href="http://montanafirealliance.org/treasury-to-temporarily-penalize-mortgage-companies-making-good-on-old-threat/" target="_blank">penalizing financial service providers for non-compliance</a>.</li>
<li>If the FDA has premarket approved a medical device, <a title="Common Law" href="http://en.wikipedia.org/wiki/Common_law" target="_blank">common-law claims</a> for negligence are not an option for consumers. See the <a title="Riegel vs Medtronic" href="http://www.law.cornell.edu/supct/html/06-179.ZS.html" target="_blank">Supreme Court ruling “Riegel v. Medtronic “, 2008</a> -</li>
</ul>
<blockquote><p>(<em>Held</em>)The MDA’s pre-emption clause bars common-law claims challenging the safety or effectiveness of a medical device marketed in a form that received premarket approval from the FDA. Pp. 8–17.</p></blockquote>
<p>Maybe the FDA <strong><em>should </em></strong>learn from the FAA but in the meantime, it seems to me if the FDA pre-market validation process had an item requiring a suitable operating system EULA, that would pretty much solve the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/06/why-microsoft-windows-is-a-bad-idea-for-medical-devices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The ethical aspects of data security</title>
		<link>http://www.software.co.il/2011/06/the-ethical-aspects-of-data-security/</link>
		<comments>http://www.software.co.il/2011/06/the-ethical-aspects-of-data-security/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 19:58:47 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Anti-Fraud]]></category>
		<category><![CDATA[Compliance]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[DLP]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[medical devices]]></category>
		<category><![CDATA[Software security]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3542</guid>
		<description><![CDATA[Ethical breaches or data breaches. I was standing in line at Ben Gurion airport, waiting for my bag to be x-rayed. A conversation started with a woman standing next to me in line. The usual sort – &#8220;Where are you traveling and what kind of work do you do?&#8221;. I replied that I was traveling ...]]></description>
			<content:encoded><![CDATA[<h2>Ethical breaches or data breaches.</h2>
<p>I was standing in line at Ben Gurion airport, waiting for my bag to be x-rayed. A conversation started with a woman standing next to me in line. The usual sort – &#8220;Where are you traveling and what kind of work do you do?&#8221;. I replied that I was traveling to Warsaw and that I specialize in data security and compliance – helping companies prevent trusted insider theft and abuse of sensitive data.</p>
<p>She said, &#8220;well sure, I understand exactly what you mean – you help enforce ethical behavior of people in the organization&#8221;.</p>
<p>I stopped for a moment and asked her, hold on – &#8220;what kind of business are you in&#8221;? She said – &#8220;well, I worked in the GSS for years training teams tasked with protecting high echelon politicians and diplomats. I understand totally the notion of enforcing ethical behavior&#8221;. And now? I asked. Now, she said, &#8221; I do the same thing, but on my own&#8221;.</p>
<p>Let&#8217;s call my new friend &#8220;Sarah&#8221;.</p>
<p>Sarah&#8217;s ethical approach was for me, a breath of fresh air. Until that point, I had defined our data security practice as an exercise in data collection, risk analysis and implementation of the appropriate technical security countermeasures to reduce the risk of data breach and abuse. Employees, competitors and malicious attackers are all potential attackers.  The objective is to implement a cost-effective portfolio of data security countermeasures &#8211; policies and procedures, software security assessments, network surveillance, data loss prevention (DLP) and encryption at various levels in the network and applications.</p>
<blockquote><p>I define security as protecting information assets.</p>
<p>Sarah defines security as protecting ethical behavior.</p></blockquote>
<p>In my approach to data security, employee behavior is an independent variable, something that might be observed but certainly, not something that can be controlled. Since employees, contractors and business partners tend to have their own weaknesses and problems that are not reported on the balanced score card of the company, my strategy for data security posits that it is more effective to monitor data than to monitor employees and prevent unauthorized transfer or modification of data instead of trying to prevent irrational or criminal behavior of people who work in the extended enterprise.</p>
<p>In Sarah’s approach to data security, if you make a set of rules and train and enforce ethical behavior with good management, sensing and a dosage of fear in the workplace; you have cracked the data security problem.</p>
<p>So – who is right here?</p>
<p>Well &#8211; we’re both right, I suppose.</p>
<p>The answer is that without asset valuation and analysis of asset vulnerabilities, protecting a single asset class (human resources, data, systems or network) while ignoring others, may be a mistake.</p>
<p>Let’s examine two specific examples in order to test the truth of this statement.</p>
<p>Consider a call center with 500 customer service representatives. They use a centralized CRM application, they have telephones and email connectivity. Each customer service representative has a set of accounts that she handles. A key threat scenario is leaking customer account information to unauthorized people – private investigators, reporters, paparazzi etc… <em>The key asset is customer data but the key vulnerability is the people that breach ethical behavior on the way to breaching customer data.</em></p>
<p><em><strong>In the case of customer service representatives breaching customer privacy, Sarah’s strategy of protecting ethical behavior is the best security countermeasure.</strong></em></p>
<p>Now, consider a medical device company with technology that performs imaging analysis and visualization. The company deploys MRI machines in rural areas and uses the Internet to provided remote expert diagnosis for doctors and patients who do not have access to big city hospitals. <em>The key asset transmitted from the systems for remote diagnosis is PHI (protected health information), and the key vulnerabilities are in the network interfaces, the applications software and operating systems that the medical device company uses.</em></p>
<p><em><strong>In  the case of remote data transfer and distributed/integrated systems, a combined strategy of software security, judicious network design and operating system selection (don’t use Microsoft Windows&#8230;) is the correct way to protect the data.</strong></em></p>
<p>My conversation with Sarah at the airport gave me a lot of food for thought.</p>
<p>Data loss prevention (DLP technology) is great  and  ethical employee behavior is crucial but they need to work hand in glove.</p>
<p>Where there are people, there is a need to mandate, monitor and reinforce ethical behavior using  a clearly communicated corporate strategy with employees and contractors. In an environment where users require freedom and flexibility in using applications such as email and search, the ethical behavior for protecting company assets starts with company executives who show from personal example that IT infrastructure is to be used to further the company’s business and improving customer service and not for personal entertainment, gain or gratification.</p>
<p>It&#8217;s the simple things in life that count.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/06/the-ethical-aspects-of-data-security/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cyber crime costs over $1 trillion</title>
		<link>http://www.software.co.il/2011/03/cyber-crime-costs-over-1-trillion/</link>
		<comments>http://www.software.co.il/2011/03/cyber-crime-costs-over-1-trillion/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 12:44:42 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Information security]]></category>
		<category><![CDATA[BSA]]></category>
		<category><![CDATA[counterfeiting]]></category>
		<category><![CDATA[cyber attack]]></category>
		<category><![CDATA[Cyber threats]]></category>
		<category><![CDATA[cybersecurity]]></category>
		<category><![CDATA[data loss prevention]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[DOD]]></category>
		<category><![CDATA[Dolce Gabbana]]></category>
		<category><![CDATA[McAfee]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OECD]]></category>
		<category><![CDATA[Stuxnet]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[Verdasys]]></category>
		<category><![CDATA[Websense]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3313</guid>
		<description><![CDATA[A pitch from Alex Whitson from SC TV for a Webinar on the LinkedIn Information Security Community piqued my attention with the following teaser: As you may have read recently, Cybercrime is now costing the UK $43.5 billion and around $1 trillion globally. Sponsored by security and compliance auditing vendor nCircle, the Webinar pitch didn&#8217;t cite any sources for the ...]]></description>
			<content:encoded><![CDATA[<p>A pitch from Alex Whitson from <a title="SC Magazine" href="www.scwebcasts.tv " target="_blank">SC TV</a> for a Webinar on the LinkedIn Information Security Community piqued my attention with the following teaser:</p>
<blockquote><p>As you may have read recently, Cybercrime is now costing the UK $43.5 billion and around $1 trillion globally.</p></blockquote>
<p>Sponsored by security and compliance auditing vendor <a title="security auditing and benchmarking" href="http://www.ncircle.com/index.php?s=company" target="_blank">nCircle</a>, the Webinar pitch <strong><em>didn&#8217;t cite any sources</em></strong> for the $1 trillion number nor the $43.5 billion number.</p>
<p>A little googling revealed the UK government report <a title="UK Cyber crime" href="http://www.bbc.co.uk/news/uk-politics-12492309.">UK Cyber crime costs UKP 27BN/year</a>. Published on the BBC&#8217;s website, the report offers a top-level breakdown of the costs of cybercrime to Britain using a fairly detailed scheme of classification and models. Regardless of how badly UK businesses are hit by cybercrime, there are<strong> several</strong> extremely weak points in the work done by Detica for the UK government.</p>
<p>a) First  - they don&#8217;t have any empirical data on actual cybercrime events.</p>
<blockquote><p>Given the number of variables and lack of ‘official’ data, our methodology uses a scenario- based approach.</p></blockquote>
<p>Which is a nice way of saying</p>
<blockquote><p>the UK government gave us some money to do a study so we put together a fancy model, put our fingers in the air and picked a number.</p></blockquote>
<p>b) Second &#8211; reading through the report, there is a great deal of information relating to fraud of all kinds, including Stuxnet which has nothing to do with the UK cyber crime space. Stuxnet does not seem to have put much of a dent in the Iranian nuclear weapons program although, it has given the American President even more time to hem and haw about Iranian nuclear threats.</p>
<p>What this tells me is that Stuxnet  has become a wakeup call for politicians to the malware threat that has existed for several years. This may be a good thing.</p>
<p>c) Third &#8211; the UK study did not interview a single CEO in any of the sectors they covered. This is shoddy research work, no matter how well packaged. I do not know a single CEO and CFO that cannot quantify their potential damage due to cyber crime &#8211; given a practical threat model and coached by an expert not a marketing person.</p>
<p>So &#8211; who pays the cost of cyber crime?</p>
<p>The consumer (just ask your friends, you&#8217;ll get plenty of empirical data).</p>
<p>Retail companies that have a credit card breach incur costs of management attention, legal and PR which can always to leveraged into marketing activities. This is rarely reported in the balance sheet as extraordinary expenses so one may assume that it is part of the cost of doing business.</p>
<p>Tech companies that have an IP breach is a different story and I&#8217;ve spoken about that at length on the blog. I believe that small to mid size companies are the hardest hit contrary to the claims made in the UK government study.</p>
<p>I would not venture a guess on total global cost of cyber crime without empirical data.</p>
<p>What gives me confidence that the 1 Trillion number is questionable is that it just happens to be the same number that President Obama and other leaders have used for the cost of IP theft &#8211; one could easily blame an Obama staffer for not doing her homework&#8230;.</p>
<p>If one takes a parallel look at the world of software piracy and product counterfeiting, one sees a similar phenomenon where political and commercial organizations like the OECD and Microsoft have marketing agendas and axes to grind leading to number inflation.</p>
<p>I have written on the problems associated with guessing and rounding up in the area of <a title="Counterfeiting" href="http://www.software.co.il/wordpress/?s=counterfeiting">counterfeiting</a> here  and <a title="Software piracy" href="http://www.software.co.il/wordpress/2010/06/2010-fifa-world-cup-game-and-software-piracy/">software piracy.</a></p>
<p>Getting back to cyber crime, using counterfeiting as a paradigm, one sees clearly that the consumer bears the brunt of the damage &#8211; whether it&#8217;s having her identity stolen and having to spend the next 6 months rebuilding her life or whether you crash on a mountain bike with fake parts and get killed.</p>
<p>If consumers bear the brunt of the damage, what is the best way to improve consumer data security and safety?</p>
<p>Certainly &#8211; <em><strong>not</strong></em> by hyping the numbers of the damage of cyber crime to big business and government. That doesn&#8217;t help the consumer.</p>
<p>Then &#8211; considering that rapid rollout of new and even sexier consumer devices like the iPad 2,<em><strong> probably</strong></em> not by security awareness campaigns. When one buys an iPhone or iPad, one assumes that the security is built in.</p>
<p>My most practical and cheapest countermeasure to cyber crime (and I will distinctly separate civilian crime from terror ) would be education starting in first grade. Just like they told you how to cross the street, we should be educating our children on open, critical thinking and not talking to strangers anywhere, not on the street and not on FB.</p>
<p>Regarding cyber terror &#8211; I have written at length how the <a title="Why the Pentagon is clueless on cyber terror" href="http://www.software.co.il/wordpress/2010/09/why-pentagon-cyber-strategy-is-divorced-from-reality/">Obama administration is clueless on cyber terror</a></p>
<p>One would hope that in defense of liberty &#8211; the Americans and their allies will soon implement more offensive and more creative measures against Islamic and Iranian sponsored cyber terror than stock answers like installing host based intrusion detection on DoD PCs</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/03/cyber-crime-costs-over-1-trillion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bank of America and Wikileaks</title>
		<link>http://www.software.co.il/2011/01/bank-of-america-and-wikileaks/</link>
		<comments>http://www.software.co.il/2011/01/bank-of-america-and-wikileaks/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 07:41:25 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Compliance]]></category>
		<category><![CDATA[Data leakage]]></category>
		<category><![CDATA[Information security]]></category>
		<category><![CDATA[Data loss]]></category>
		<category><![CDATA[data loss prevention]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[DLP]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[Verdasys]]></category>
		<category><![CDATA[Websense]]></category>
		<category><![CDATA[wikileaks]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3029</guid>
		<description><![CDATA[First reported in the Huffington Post in November 2010, the Bank of America has set up a Wikileaks defense team after an announcement by Julian Assange that Wikileaks has information from a 5GB hard drive of a Bank of America executive. In a burst of wikipanic, Bank of America has dived into full-on counterespionage mode&#8230;15 ...]]></description>
			<content:encoded><![CDATA[<p>First reported in the Huffington Post in November 2010, the <a title="BoA Wikileaks" href="http://www.huffingtonpost.com/2011/01/03/bank-of-america-wikileaks_1_n_803503.html" target="_blank">Bank of America has set up a Wikileaks defense team</a> after an announcement by Julian Assange that Wikileaks has information from a 5GB hard drive of a Bank of America executive.</p>
<blockquote><p>In a burst of wikipanic, Bank of America has dived into full-on counterespionage mode&#8230;15 to 20 bank officials, along with consulting firm Booz Allen Hamilton, will be &#8220;scouring thousands of documents in the event that they become public, reviewing every case where a computer has gone missing and hunting for any sign that its systems might have been compromised.&#8221;</p></blockquote>
<p>Interesting that they needed Booz and Hamilton.  I thought Bank of America was a Vontu DLP (now Symantec) customer.  It says something about the technology either not working, being discarded or simply not implemented properly because the Wikileaks announcement was made in <a title="Wikileaks Bank of America" href="http://www.huffingtonpost.com/2010/11/30/wikileaks-targeting-bank-of-america_n_789804.html" target="_blank">October 2009</a>. So it took BoA over a year to respond.  Good luck finding forensics over a year after the leak happened.</p>
<p>This is a good thing for information security consultants and solution providers, especially if it drives companies to invest in DLP. There are some good technologies out there and companies that implement DLP thoughtfully (even if for dubious reasons) will be profiting from the improved visibility into transactions on their network and better protection of IP and customer data.</p>
<p>Ethics of the bank executive aside, it is conceivable (albeit totally speculative), that the Obama administration is behind the Wikileaks disclosures on US banking. It is consistent with the Obama policy that required banks to accept TARP funds and stress testing in order to make the financial institutions more beholden to the Federal government. This is consistent with the State Department cables leak, which also appears (from my vantage point in the Middle East) to be deliberately disclosed to Wikileaks in order further the agenda against the Iranians without coming out and saying so specifically.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/01/bank-of-america-and-wikileaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking security on the offensive</title>
		<link>http://www.software.co.il/2011/01/taking-security-on-the-offensive/</link>
		<comments>http://www.software.co.il/2011/01/taking-security-on-the-offensive/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 18:13:03 +0000</pubDate>
		<dc:creator>Danny Lieberman</dc:creator>
				<category><![CDATA[Information security]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[Risk management]]></category>

		<guid isPermaLink="false">http://www.software.co.il/wordpress/?p=3008</guid>
		<description><![CDATA[I believe many people involved with IT security have a feeling of frustration that stems from continously reacting to external forces: spam attacks, spyware attacks, insider threats, analyst reports and new product announcements. Is it possible to be an information security officer and mitigate threats to confidentiality, availability and integrity of data in a proactive ...]]></description>
			<content:encoded><![CDATA[<p>I believe many people involved with IT security have a feeling of frustration that stems from continously reacting to external forces: spam attacks, spyware attacks, insider threats, analyst reports and new product announcements. Is it possible to be an information security officer and mitigate threats to confidentiality, availability and integrity of data in a proactive fashion?</p>
<hr id="system-readmore" />Well, step back and consider three basic tenets of IT Security</p>
<ul>
<li>Information Security is Warfare.</li>
<li>Most of your information security strategy is reactionary with Penetrate and Patch methods</li>
<li>Few implementations address the collection of information about attackers.</li>
</ul>
<p><strong>The key Elements in Information Security Strategy</strong></p>
<p>I propose to stop reacting and go back on the offensive, with a proactive security strategy based on control, collection, capture and change:</p>
<p><strong>Control:</strong> Managing the access of information to and from the network and systems.<br />
<strong>Collection:</strong> Gathering information about user habits and systems behavior.<br />
<strong>Capture:</strong> The capture of information from anomalous events on the network.<br />
<strong>Change:</strong> Adapt the security posture to meet new situations.</p>
<p>By basing both defensive <strong>and</strong> offensive tactics on these four strategic elements, you can poractively control who accesses your network, collect information about abnormal transactions, capture anomalous events, and adapt your security posture to meet changing situations.</p>
<h4>Defensive Information Security Tactics</h4>
<ul>
<li>Network Access Control.</li>
<li>Host Access Control.</li>
<li>Intrusion Prevention Systems</li>
<li>Data loss prevention (DLP)</li>
<li>Application firewalls</li>
<li>Backups</li>
</ul>
<h4>Offensive Information Security Tactics</h4>
<ul>
<li>Honey Pots and Honey Nets.</li>
<li>Attacking and auditing your own systems.</li>
<li>Proactive response to attacks.</li>
</ul>
<p><strong>Acknowledgement: </strong>Christopher Neitzert (Chris@Neitzert.com) who was the first to delve into how to improve information security with a combination of both offensive and defensive tactics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.software.co.il/2011/01/taking-security-on-the-offensive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

