<?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 Intelligence and Big Data &#124; raffy.ch - blog &#187; Visualization</title>
	<atom:link href="http://raffy.ch/blog/category/visualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://raffy.ch/blog</link>
	<description>Big data analytics and visualization</description>
	<lastBuildDate>Sat, 24 Mar 2012 20:49:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Advanced Network Graph Visualization with AfterGlow</title>
		<link>http://raffy.ch/blog/2012/03/24/advanced-network-graph-visualization-with-afterglow/</link>
		<comments>http://raffy.ch/blog/2012/03/24/advanced-network-graph-visualization-with-afterglow/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 20:49:10 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=608</guid>
		<description><![CDATA[There are cases where you need fairly sophisticated logic to visualize data. Network graphs are a great way to help a viewer understand relationships in data. In my last blog post, I explained how to visualize network traffic. Today I am showing you how to extend your visualization with some more complicated configurations. This blog [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://raffy.ch/blog/wp-content/uploads/2012/03/graph-300x289.png" alt="" title="graph" width="300" height="289" style="float:right"/>There are cases where you need fairly sophisticated logic to visualize data. Network graphs are a great way to help a viewer understand relationships in data. In my last blog post, I explained how to <a href="http://raffy.ch/blog/2012/03/21/visualizing-packet-captures-for-fun-and-profit/">visualize network traffic</a>. Today I am showing you how to extend your visualization with some more complicated configurations.</p>
<p>This blog post was inspired by an <a href="http://afterglow.sf.nt">AfterGlow</a> user who emailed me last week asking how he could keep a list of port numbers to drive the color in his graph. Here is the code snippet that I suggested he use:</p>
<p><code>variable=@ports=qw(22 80 53 110);<br />
color="green" if (grep(/^\Q$fields[0]\E$/,@ports))</code></p>
<p>Put this in a configuration file and invoke AfterGlow with it:</p>
<p><code>perl afterglow.pl -c file.config | ... </code></p>
<p>What this does is color all nodes green if they are part of the list of ports (22, 80, 53, 110). I am using <i>$fields[0]</i> to reference the first column of data. You could also use the function <i>fields()</i> to reference any column in the data.</p>
<p>Another way to define the variable is by looking it up in a file. Here is an example:</p>
<p><code>variable=open(TOR,"tor.csv"); @tor=<tor>; close(TOR);<br />
color="red" if (grep(/^\Q$fields[1]\E$/,@tor))</tor></code></p>
<p>This time you put the list of items in a file and read it into an array. Remember, it&#8217;s just Perl code that you execute after the <i>variable=</i> statement. Anything goes! </p>
<p>I am curious what you will come up with. Post your experiments and questions on <a href="http://secviz.org">secviz.org</a>!</p>
<p>Read more about how to use AfterGlow in <a href="http://secviz.org/content/applied-security-visualization">security visualization</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2012/03/24/advanced-network-graph-visualization-with-afterglow/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Visualizing Packet Captures For Fun and Profit</title>
		<link>http://raffy.ch/blog/2012/03/21/visualizing-packet-captures-for-fun-and-profit/</link>
		<comments>http://raffy.ch/blog/2012/03/21/visualizing-packet-captures-for-fun-and-profit/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 21:26:10 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=595</guid>
		<description><![CDATA[Have you ever collected a packet capture and you needed to know what the collected traffic is about? Here is a quick tutorial on how to use AfterGlow to generate link graphs from your packet captures (PCAP). I am sitting at the 2012 Honeynet Project Security Workshop. One of the trainers of a workshop tomorrow [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://afterglow.sourceforge.net/afterglow.png" width=200 style="float:right"/><br />
Have you ever collected a packet capture and you needed to know what the collected traffic is about? Here is a quick tutorial on how to use <a href="http://afterglow.sf.net">AfterGlow</a> to generate link graphs from your packet captures (PCAP).</p>
<p>I am sitting at the <a href="https://www.honeynet.org/SecurityWorkshops/2012_SF_Bay_Area">2012 Honeynet Project Security Workshop</a>. One of the trainers of a workshop tomorrow just approached me and asked me to help him visualize some PCAP files. I thought it might be useful for other people as well. So here is a quick tutorial.</p>
<h4>Installation</h4>
<p>To start with, make sure you have <a href="http://afterglow.sf.net">AfterGlow</a> installed. This means you also need to install <a href="http://graphviz.org">GraphViz</a> on your machine!</p>
<h4>First Visualization Attempt</h4>
<p>The first attempt of visualizing tcpdump traffic is the following:</p>
<p><code>tcpdump -vttttnnelr file.pcap | parsers/tcpdump2csv.pl "sip dip" | perl graph/afterglow.pl -t | neato -Tgif -o test.gif</code></p>
<p>I am using the tcpdump2csv parser to deal with the source/destination confusion. The problem with this approach is that if your output format is slightly different to the regular expression used in the tcpdump2csv.pl script, the parsing will fail [In fact, this happened to us when we tried it here on someone else's computer].<br />
It is more elegant to use something like <a href="http://www.qosient.com/argus/">Argus</a> to do this. They do a much better job at protocol parsing:</p>
<p><code>argus -r file.pcap -w - | ra -r - -nn -s saddr daddr -c, | perl graph/afterglow.pl -t | neato -Tgif -o test.gif</code></p>
<p>When you do this, make sure that you are using Argus 3.0 or newer. If you do not, ragator does not have the <b>-c</b> option! </p>
<p>From here you can go in all kinds of directions. </p>
<h4>Using other data fields</h4>
<p><code>argus -r file.pcap -w - | ra -r - -nn -s saddr daddr dport -c, | perl graph/afterglow.pl | neato -Tgif -o test.gif</code></p>
<p>Here I added the dport to the parameters. Also note that I had to remove the <b>-t</b> parameter from the afterglow command. This tells AfterGlow that there are not two, but three columns in the CSV file.</p>
<p>Or use this:</p>
<p><code>argus -r file.pcap -w - | ra -r - -nn -s daddr dport ttl -c, | perl graph/afterglow.pl | neato -Tgif -o test.gif</code></p>
<p>This uses the destination address, the destination port and the TTL to plot your graph. Pretty neat &#8230;</p>
<h4>AfterGlow Properties</h4>
<p>You can define your own property file to define the colors for the nodes, configure clustering, change the size of the nodes, etc.</p>
<p><code>argus -r file.pcap -w - | ra -r - -nn -s daddr dport ttl -c, | perl graph/afterglow.pl -c graph/color.properties | neato -Tgif -o test.gif</code></p>
<p>Here is an example config file that is not as straight forward as the default one that is included in the AfterGlow distribution:</p>
<p><code>color="white" if ($fields[2] =~ /foo/)<br />
color="gray50"<br />
size.target=$targetCount{$targetName};<br />
size=0.5<br />
maxnodesize=1<br />
</code></p>
<p>The config uses the number of times the target shows up as the size of the target node.</p>
<h4>Comments / Examples / Questions?</h4>
<p>Obviously comments and questions are more than welcome. Also make sure that you post your example graphs on <a href="http://secviz.org">secviz.org</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2012/03/21/visualizing-packet-captures-for-fun-and-profit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Big Data Security Intelligence &#8211; nothing to see here &#8211; move along</title>
		<link>http://raffy.ch/blog/2012/03/16/big-data-security-intelligence-nothing-to-see-here-move-along/</link>
		<comments>http://raffy.ch/blog/2012/03/16/big-data-security-intelligence-nothing-to-see-here-move-along/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 15:22:15 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Security Intelligence]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=581</guid>
		<description><![CDATA[Big data doesn&#8217;t help us to create security intelligence! Big data is like your relational database. It&#8217;s a technology that helps us manage data. We still need the analytical intelligence on top of the storage and processing tier to make sense of everything. Visual analytics anyone? A couple of weeks ago I hung out around [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://raffy.ch/blog/wp-content/uploads/2012/03/test.png" style="float:right" />Big data doesn&#8217;t help us to create security intelligence! Big data is like your relational database. It&#8217;s a technology that helps us manage data. We still need the analytical intelligence on top of the storage and processing tier to make sense of everything. <a href="http://www.pixlcloud.com">Visual analytics</a> anyone?</p>
<p>A couple of weeks ago I hung out around the <a href="http://www.rsaconference.com/events/2012/usa/">RSA conference</a> and walked the show floor. Hundreds of companies exhibited their products. The big topics this year? Big data and security intelligence. Seems like this was MY conference. Well, not so fast. Marketing does unfortunately not equal actual solutions. Here is an example out of the <a href="http://gigaom.com/cloud/how-hadoop-can-help-keep-your-money-in-the-bank/">press</a>. Unfortunately, these kinds of things shine the light on very specific things; in this case, the use of hadoop for security intelligence. What does that even mean? How does it work? People seem to not really care, but only hear the big words.</p>
<p>Here is a quick side-note or anecdote. After the <a href="https://ae.rsaconference.com/US12/scheduler/modifySession.do?SESSION_ID=10001&#038;back=true">big data panel</a>, a friend of mine comes up to me and tells me that the audience asked the panel a question about how analytics played into the big data environment. The panel huddled, discussed, and said: &#8220;<em>Ask Raffy about that</em>&#8220;.</p>
<p>Back to the problem. I have been reading a bunch lately about SIEM being replaced or superseded by big data infrastructure. That&#8217;s completely and utterly stupid. These are not competing technologies. They are complementary. If anything, SIEM will be replaced by some other analytical capabilities that are leveraging big data infrastructures. Big data is like RDBMS. New analytical capabilities are like the SIEMs (correlation rules, parsed data, etc.) For example, using big data, who is going to write your parsers for you. SIEMs have spent a lot of time and resources on things like parsers, big data solutions will need to do the same! Yes, there are a couple of things that you can do with big data approaches and unparsed data. However, most discussions out there do not discuss those uses.</p>
<p>In the context of big data, people also talk about leveraging multiple data sources and new data sources. What&#8217;s the big deal? We have been talking about that for 6 years (or longer). Yes, we want video feeds, but how do you correlate a video with a firewall log? Well, you process the video and generate events from it. We have been doing that all along. Nothing new there. </p>
<blockquote><p>What <strong>HAS</strong> changed is that we now have the means to store and process the data; any data. However, nobody really knows <strong><em>how</em></strong> to process it.</p></blockquote>
<p>Let&#8217;s start focusing on analytics!</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2012/03/16/big-data-security-intelligence-nothing-to-see-here-move-along/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Steps To a Mature Visual Analytics Practice</title>
		<link>http://raffy.ch/blog/2012/01/08/the-steps-to-a-mature-visual-analytics-practice/</link>
		<comments>http://raffy.ch/blog/2012/01/08/the-steps-to-a-mature-visual-analytics-practice/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 21:50:38 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=535</guid>
		<description><![CDATA[The visualization maturity scale can be used to explain a number of issues in the visual analytics space. For example, why aren&#8217;t companies leveraging visualization to analyze their data? What are the requirements to implement visual analytics services? Or why don&#8217;t we have more visual analytics products? About three years ago I posted the log [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>visualization maturity scale</strong> can be used to explain a number of issues in the visual analytics space. For example, why aren&#8217;t companies leveraging visualization to analyze their data? What are the requirements to implement visual analytics services? Or why don&#8217;t we have more visual analytics products?</p>
<p><a href="http://raffy.ch/blog/wp-content/uploads/2011/12/vis_maturity.003.jpg"><img src="http://raffy.ch/blog/wp-content/uploads/2011/12/vis_maturity.003.jpg" alt="" title="vis_maturity.003" width="650" class="alignright size-medium wp-image-544" /></a></p>
<p>About three years ago I posted the <a href="http://raffy.ch/blog/2010/06/07/maturity-scale-for-log-management-and-analysis">log management maturity scale</a>. The maturity scale helped explain why companies and products are not as advanced as they should be in the log management, log analysis, and security information management space.</p>
<p>While preparing my presentation for the <a href="http://raffy.ch/blog/2011/12/08/cyber-security-visualization-grand-challenge/">cyber security grand challenge</a> meeting in early December, I developed the maturity scale for information visualization that you can see above.</p>
<p>Companies that are implementing visualization processes move from through each of the steps from left to right. So do product companies that build visualization applications. In order to build products on the right-hand side, they need to support the pieces to the left. Let&#8217;s have a look at the different stages in more detail:</p>
<ul>
<li><strong>Data Collection</strong>: No data, no visuals (see also <a href="http://www.rationalsurvivability.com/blog/?p=3222">Where Data Analytics and Security Collide</a>). This is the foundation. Data needs to be available and accessible. Generally it is centralized in a big data store (it used to be relational databases and that&#8217;s a viable solution as well). This step generally involves parsing data. Turning unstructured data or semi-structured data into structured data. Although a fairly old problem, this is still a huge issue. I wonder if anyone is going to come up with a novel solution in this space anytime soon! The traditional regular expression based approach just doesn&#8217;t scale.</li>
<li><strong>Data Analysis</strong>: Once data is centralized or accessible via a federated data store, you have to do something with it. A lot of companies are using Excel to do the first iteration of data analysis. Some are using <a href="http://r-project.org">R</a>, <a href="http://www.sas.com/">SAS</a>, or other statistics and data analytics software. One of the core problems here is <i><a href="http://vis.stanford.edu/wrangler/">data cleansing</a></i>. Another huge problem is understanding the data itself. Not every data set is as self explanatory as sales data.</li>
<li><strong>Context Integration</strong>: Often we collect data, analyze it, and then realize that the data doesn&#8217;t really contain enough information to understand it. For example in network security. What does the machine behind a specific IP address do? Is it a Web server? This is where we start adding more context: roles of machines, roles of users, etc. This can significantly increase the value of data analytics.</li>
<li><strong>Visualization</strong>: Lets be clear about what I refer to as visualization. I am using visualization to mean <i>reporting</i> and <i>dashboards</i>. Reports are static summaries of historical data. They help communicate information. Dashboards are used to communicate information in real-time (or near real-time) to create situational awareness.</li>
<li><strong>Visual Analytics</strong>: This is where things are getting interesting. Interactive interfaces are used as a means to understand and reason about the data. Often <a href="http://www.kitware.com/InfovisWiki/index.php/Linked_Views">linked views</a>, <a href="http://www.infovis-wiki.net/index.php?title=Linking_and_Brushing">brushing</a>, and <a href="http://drum.lib.umd.edu/bitstream/1903/388/2/CS-TR-3022.pdf">dynamic queries</a> are key technologies used to give the user the most freedom to look at and analyze the data.</li>
<li><strong>Collaboration</strong>: It is one thing to have one analyst look at data and apply his/her own knowledge to understand the data. It&#8217;s another thing to have people collaborate on data and use their joint &#8216;wisdom&#8217;.</li>
<li><strong>Dissemination</strong>: Once an analysis is done, the job of the analyst is not. The newly found insights have to be shared and communicated to other groups or people in order for them to take action based on the findings.</li>
<li><strong>Put in Action</strong>: This could be regarded as part of the dissemination step. This step is about operationalizing the information. In the case of security information management, this is where the knowledge is encoded in correlation rules to catch future instances of the same or similar incidents.</li>
</ul>
<p>For an end user, the visualization maturity scale outlines the individual steps he/she has to go through in order to achieve analytical maturity. In order to implement the &#8216;put in action&#8217; step, users need to implement all of the steps on the left of the scale.</p>
<p>For visualization product companies, the scale means that in order to have a product that lets a user put findings into action, they have to support all the left-hand stages: there needs to be a data collection piece; a data storage. The data needs to be pre-analyzed. Operations like data cleansing, aggregation, filtering, or even the calculation of certain statistical properties fall into this step. Context is not always necessary, but often adds to the usefulness of the data. Etc. etc.</p>
<p>There are a number of products, both open source, as well as commercial solutions that are solving a lot of the left hand side problems. Technologies like column-based data bases (e.g., <a href="http://www.mongodb.org/">MongoDB</a>) or map reduce (e.g., <a href="http://hadoop.apache.org/">Hadoop</a>), or search engines like <a href="http://www.elasticsearch.org/">ElasticSearch</a> are great open source examples of such technologies. In the commercial space you will find companies like <a href="http://karmasphere.com/">Karmaspehre</a> or <a href="http://www.datameer.com/">DataMeer</a> tackling these problems.</p>
<p>Comments? Chime in!</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2012/01/08/the-steps-to-a-mature-visual-analytics-practice/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Cyber Security Visualization &#8211; Grand Challenge</title>
		<link>http://raffy.ch/blog/2011/12/08/cyber-security-visualization-grand-challenge/</link>
		<comments>http://raffy.ch/blog/2011/12/08/cyber-security-visualization-grand-challenge/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 01:54:21 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Security Market]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=524</guid>
		<description><![CDATA[At the beginning of this week, I spent some time with a number of interesting folks talking about cyber security visualization. It was a diverse set of people from the DoD, the X Prize foundation, game designers, and even an astronaut. We all discussed what it would mean if we launched a grand challenge to [...]]]></description>
			<content:encoded><![CDATA[<p>At the beginning of this week, I spent some time with a number of interesting folks talking about <strong>cyber security visualization</strong>. It was a diverse set of people from the DoD, the <a href="http://www.xprize.org/">X Prize foundation</a>, game designers, and even an astronaut. We all discussed what it would mean if we launched a <strong><em>grand challenge to improve cyber situational awareness.</em></strong> Something like the <a href="http://www.googlelunarxprize.org/">Lunar XPrize</a> that is a challenge where teams have to build a robot and successfully send it to the moon. </p>
<p>There were a number of interesting proposals that came to the table. On a lot of them I had to bring things back down to reality every now and then. These people are not domain experts in cyber security, so you might imagine what kind of ideas they suggested. But it was fun to be challenged and to hear all these crazy ideas. Definitely expanded my horizon and stretched my imagination. </p>
<p>What I found interesting is that pretty much everybody gravitated towards a game-like challenge. All the way to having a game simulator for cyber security situational awareness. </p>
<p>Anyways, we&#8217;ll see whether the DoD is actually going to carry through with this. I sure hope so, it would help the secviz field enormously and spur interesting development, as well as extend and revitalize the <a href="http://secviz.org">secviz</a> community!</p>
<p>Here is the presentation about situational awareness that I gave on the first day. I talked very briefly about what situational awareness is, where we are today, what the challenges are, and where we should be moving to.</p>
<div style="width:425px" id="__ss_10492680"><iframe src="http://www.slideshare.net/slideshow/embed_code/10492680" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more of my <a href="http://www.slideshare.net/zrlram" target="_blank">presentations</a> </div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2011/12/08/cyber-security-visualization-grand-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning About Log Analysis and Visualization in Taipei</title>
		<link>http://raffy.ch/blog/2011/09/13/learning-about-log-analysis-and-visualization-in-taipei/</link>
		<comments>http://raffy.ch/blog/2011/09/13/learning-about-log-analysis-and-visualization-in-taipei/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 18:29:16 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=481</guid>
		<description><![CDATA[I just returned from Taipei where I was teaching log analysis and visualization classes for Trend Micro. Three classes a 20 students. I am surprised that my voice is still okay after all that talking. It&#8217;s probably all the tea I was drinking. The class schedule looked as follows: Day 1: Log Analysis data sources [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://raffy.ch/blog/wp-content/uploads/2011/09/L1090818_small.jpg" alt="L1090818_small" title="L1090818_small" width="150" style="float:right;"/>I just returned from Taipei where I was teaching log analysis and visualization classes for Trend Micro. Three classes a 20 students. I am surprised that my voice is still okay after all that talking. It&#8217;s probably all the tea I was drinking.</p>
<p>The class schedule looked as follows:</p>
<p><b>Day 1: Log Analysis</b></p>
<ul>
<li>data sources</li>
<li>data analysis and visualization linux (davix)</li>
<li>log management and siem overview</li>
<li>application logging guidelines</li>
<li>log data processing</li>
<li>loggly introduction</li>
<li>splunk introduction</li>
<li>data analysis with splunk</li>
</ul>
<p><b>Day 2: Visualization</b></p>
<ul>
<li>visualization theory</li>
<li>data visualization tools an libraries</li>
<li>perimeter threat use-cases</li>
<li>host-based data analysis in splunk</li>
<li>packet capture analysis in splunk</li>
<li>loggly api overview</li>
<li>visualization resources</li>
</ul>
<p><img src="http://raffy.ch/blog/wp-content/uploads/2011/09/IMG_2069-150x150.jpg" alt="IMG_2069" title="IMG_2069" width="150" height="150" style="float:right" />The class was accompanied by a number of exercises that helped the students apply the theory we talked about. The exercises are partly pen and paper and partly hands-on data analysis of sample logs with the <a href="http://davix.secviz.org">davix</a> life CD. </p>
<p>I love Taipei, especially the food. I hope I&#8217;ll have a chance to visit again soon.</p>
<p>PS: If you are looking for a list of <a href="http://secviz.org/content/data-visualization-resources">visualization resources</a>, they got moved over to secviz.</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2011/09/13/learning-about-log-analysis-and-visualization-in-taipei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mid January Roundup</title>
		<link>http://raffy.ch/blog/2011/01/17/mid-januar-roundup/</link>
		<comments>http://raffy.ch/blog/2011/01/17/mid-januar-roundup/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 17:00:03 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=424</guid>
		<description><![CDATA[The last couple of months have been pretty busy. I have been really bad about updating my personal blog here, but I have not been lazy. Among other things, I have been traveling a lot to attend a number of conferences. Here is a little summary of what&#8217;s been going on: I posted a blog [...]]]></description>
			<content:encoded><![CDATA[<p>The last couple of months have been pretty busy. I have been really bad about updating my personal blog here, but I have not been lazy. Among other things, I have been traveling a lot to attend a number of conferences. Here is a little summary of what&#8217;s been going on:</p>
<ul>
<li>I posted a blog entry on <a href="http://secviz.org">secviz</a> about my <a href="http://secviz.org/content/security-visualization-state-2010-and-2011-predictions">security visualization predictions for 2011</a>. It&#8217;s a bit of a gloomy forecast, but check it out.</li>
<li>The Security visualization predictions post was motivated by a panel I was on at the <a href="http://www.sans.org/incident-detection-summit-2010">SANS Incident Detection Summit</a> in D.C. early December. Here are the <a href="http://secviz.org/files/SANS2010_Vis_Panel.pdf">slides</a> for my panel discussion.</li>
<li>One of the topics I have been talking about lately is <a href="http://www.slideshare.net/zrlram/cloud-security-a-visibility-challenge">Cloud Security</a>. The slides linked here are from a presentation I gave in <a href="http://congreso.seguridad.unam.mx/2010/info/conferencias.dsc#pon5">Mexico</a>.</li>
<li>The topic of <a href="http://www.theinfoboom.com/articles/cloud-security-is-a-visibility-challenge/">cloud security</a> and also <a href="http://www.theinfoboom.com/articles/cloud-security-its-a-compliance-and-risk-issue/">cloud risk management</a> is one that I have been discussing on my new blog over at <a href="http://www.theinfoboom.com/profile/zrlram/">Infoboom</a>.</li>
<li>I have recorded a couple of pod casts in the last months also. One was the CloudChaser podcast where we talked about <a href="http://www.loggly.com/2010/12/logging-challenges-and-logging-in-the-cloud-podcast/">Logging Challenges and Logging in the Cloud</a>.</li>
<li>The other pod cast I recorded was together with <a href="http://twitter.com/kordless">Kord</a> and <a href="http://twitter.com/garyorenstein">Gary</a> for <a href="http://cloudcomputingshow.blogspot.com/2011/01/cloud-computing-show-45.html">The Cloud Computing Show</a>. We talked about all kinds of things. Mainly about <a href="http://www.loggly.com">Loggly</a> and logging in the cloud. Here the <a href="https://www.box.net/shared/static/njsdaoh2jk.mp3">mp3</a>.</li>
<li>I also dug out the <a href="http://raffy.ch/blog/2010/06/07/maturity-scale-for-log-management-and-analysis/">log maturity scale</a> again. After mentioning it at the SANS logging summit, I got a lot of great responses on it.</li>
<li>The other day, one of my Google alerts surfaced this DefCon video of me talking about <a href="http://www.youtube.com/v/NfgD2S06En4">security visualization</a>. It&#8217;s probably one of my first conference appearances. Is it?</li>
<li>And finally, 2011 started with a trip to Kauai where I presented a paper on insider threat visualization. Unfortunately, the paper is not publicly available. Email me if you want a copy.</li>
</ul>
<p>As you are probably aware, you find my speaking schedule and slides on my <a href="http://raffy.ch/myself.htm">personal page</a>. That&#8217;s a good way of tracking me down. And in case you haven&#8217;t found it yet, I have a <a href="http://www.slideshare.net/zrlram">slideshare</a> account where I try to share my presentations as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2011/01/17/mid-januar-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All the Data That&#8217;s Fit to Visualize</title>
		<link>http://raffy.ch/blog/2010/06/28/all-the-data-thats-fit-to-visualize/</link>
		<comments>http://raffy.ch/blog/2010/06/28/all-the-data-thats-fit-to-visualize/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 18:29:36 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Security Information Management]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=392</guid>
		<description><![CDATA[Last week I posted the introductionary video for a talk that I gave at Source Boston in 2008. I just found the entire video of that talk. Enjoy: Talk by Raffael Marty: With the ever-growing amount of data collected in IT environments, we need new methods and tools to deal with them. Event and Log [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I posted the introductionary video for a talk that I gave at Source Boston in 2008. I just found the entire video of that talk. Enjoy:</p>
<p><embed src="http://blip.tv/play/Aa_lQgA" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="270" width="320"></embed></p>
<p>Talk by <a href="http://raffy.ch/blog">Raffael Marty</a>:</p>
<p>With the ever-growing amount of data collected in IT environments, we need new methods and tools to deal with them. Event and Log Analysis is becoming one of the main tools for analysts to investigate and comprehend the state of their networks, hosts, applications, and business processes. Recent developments, such as regulatory compliance and an increased focus on insider threat have increased the demand for analytical tools to help in the process. Visualization is offering a new, more effective, and simpler approach to data analysis. To date, security visualization, has mostly failed to deliver effective tools and methods. This presentation will show what the New York Times has to teach us about effective visualizations. Visualization for the masses and not visualization for the experts. Insider Threat, Governance, Risk, and Compliance (GRC), and Perimeter Threat all require effective visualization methods and they are right in front of us – in the newspaper.</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2010/06/28/all-the-data-thats-fit-to-visualize/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>All the Data That’s Fit to Visualize &#8211; SOURCE Boston 2008</title>
		<link>http://raffy.ch/blog/2010/06/22/all-the-data-that%e2%80%99s-fit-to-visualize-source-boston-2008/</link>
		<comments>http://raffy.ch/blog/2010/06/22/all-the-data-that%e2%80%99s-fit-to-visualize-source-boston-2008/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 21:00:14 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=382</guid>
		<description><![CDATA[I was giving a talk at SOURCEBoston 2008. The topic this time was general visualization and what has gone wrong in security visualization in the past. I showed how we can learn and steal from other disciplines, in this case, the New York Times. The NYT has done some pretty fantastic work in the area [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://raffy.ch/blog/wp-content/uploads/2010/06/img-62_t.jpg" alt="img-62_t" title="img-62_t" width="140" height="211" style="float:right" /><br />
I was giving a talk at <a href="http://www.sourceboston.com">SOURCEBoston</a> 2008. The topic this time was general visualization and what has gone wrong in <a href="http://secviz.org">security visualization</a> in the past. I showed how we can learn and steal from other disciplines, in this case, the <a href="http://www.nyt.com">New York Times</a>. The NYT has done some pretty fantastic work in the area of data visualization. Their <a href="http://www.nytimes.com/packages/khtml/2006/04/02/business/20060402_SECTOR_GRAPHIC.html?adxnnl=1&amp;adxnnlx=1206662129-L/V879s4niYxDmYR/23MOg">interactive market map</a>, for example, is a great way of exploring stock data. During the talk, I outlined some of the design principles that the NYT graphics department is using when they are designing their graphs: <strong>Show &#8211; Don’t Tell</strong>.</p>
<p>To start <a href="http://raffy.ch/blog/2010/06/28/all-the-data-thats-fit-to-visualize">my presentation</a>, I showed a little video about security visualization (see below).</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/NI81kYlERzk&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/NI81kYlERzk&amp;hl=en" wmode="transparent"></embed></object></p>
<p>Security Visualization &#8211; Gone Wrong</p>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2010/06/22/all-the-data-that%e2%80%99s-fit-to-visualize-source-boston-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Blog Posts on Django, Security, Cloud, and Visualization</title>
		<link>http://raffy.ch/blog/2010/05/25/recent-blog-posts-on-django-security-cloud-and-visualization/</link>
		<comments>http://raffy.ch/blog/2010/05/25/recent-blog-posts-on-django-security-cloud-and-visualization/#comments</comments>
		<pubDate>Wed, 26 May 2010 01:17:39 +0000</pubDate>
		<dc:creator>Raffael Marty</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Log Analysis]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://raffy.ch/blog/?p=347</guid>
		<description><![CDATA[I thought you might be interested in some blog posts that I have written lately. I have been doing quite a bit of work on Django and Web applications. That might explain the topics of my recent blog posts. Check them out. Would love to hear from you if you have any comments. Either leave [...]]]></description>
			<content:encoded><![CDATA[<p>I thought you might be interested in some blog posts that I have written lately. I have been doing quite a bit of work on Django and Web applications. That might explain the topics of my recent blog posts. Check them out. </p>
<p>Would love to hear from you if you have any comments. Either leave a comment on the blogs, or contact me via Twitter at <a href="http://twitter.com/zrlram">@zrlram</a>.</p>
<ul>
<li><a href="http://www.loggly.com/2010/05/how-to-enable-logging-in-django-1-2/">How to Enable Logging in Django 1.2</a></li>
<li><a href="http://www.loggly.com/2010/05/a-logging-library-for-django-how-we-log-at-loggly/">A Logging Library for Django – How We Log at Loggly</a></li>
<li><a href="http://www.loggly.com/2010/04/securing-your-web-application-with-httponly-cookies-or-how-apache-org-and-atlassian-could-have-been-secured/">Securing your Web Application with httponly cookies OR How Apache.org and Atlassian could have been secured</a></li>
<li><a href="http://www.loggly.com/2010/03/visualizing-your-data-in-the-cloud-with-loggly-and-highcharts/">Visualizing your Data in the Cloud with Loggly and HighCharts</a></li>
<li><a href="http://www.loggly.com/2010/03/fixing-client-ips-in-apache-logs-with-amazon-load-balancers/">Fixing Client IPs in Apache Logs with Amazon Load Balancers</a></li>
<li><a href="http://www.loggly.com/2010/03/rightscale-apis-with-python/">How to use RightScale APIs with Python</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://raffy.ch/blog/2010/05/25/recent-blog-posts-on-django-security-cloud-and-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

