<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Risktical Ramblings</title>
	<atom:link href="http://risktical.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://risktical.com</link>
	<description>Assessing, Articulating &#38; Quantifying Information Security Risk</description>
	<lastBuildDate>Fri, 20 Jan 2012 14:46:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='risktical.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Risktical Ramblings</title>
		<link>http://risktical.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://risktical.com/osd.xml" title="Risktical Ramblings" />
	<atom:link rel='hub' href='http://risktical.com/?pushpress=hub'/>
		<item>
		<title>Heat Map Love – R Style</title>
		<link>http://risktical.com/2012/01/20/heat-map-love-r-style/</link>
		<comments>http://risktical.com/2012/01/20/heat-map-love-r-style/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 14:46:42 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[heat map]]></category>
		<category><![CDATA[quantitative]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[risk analysis]]></category>
		<category><![CDATA[risk hose]]></category>
		<category><![CDATA[risk visualization]]></category>

		<guid isPermaLink="false">http://risktical.com/?p=407</guid>
		<description><![CDATA[Over the last several years not a month has gone by where I have not heard someone mention R &#8211; with regards to risk analysis or risk modeling &#8211; either in discussion or on a mailing list. If you do not know what R is, take a few minutes to read about it at the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=407&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://risktical.files.wordpress.com/2012/01/risktical_csv3.jpg"><img class="aligncenter size-full wp-image-408" title="risktical_csv3" src="http://risktical.files.wordpress.com/2012/01/risktical_csv3.jpg?w=450&#038;h=413" alt="" width="450" height="413" /></a></p>
<p>Over the last several years not a month has gone by where I have not heard someone mention R &#8211; with regards to risk analysis or risk modeling &#8211; either in discussion or on a mailing list. If you do not know what R is, take a few minutes to read about it at the project’s main site. Simply put, R is a free software environment for statistical computing and graphics. Most of my quantitative modeling and analysis has been strictly Excel-based, which to date has been more then sufficient for my needs. However, Excel is not the ‘end-all-be-all’ tool. Excel does not contain every statistical distribution that risk practitioners may need to work with, there is no native Monte Carlo engine and it does have graphing limitations short of purchasing third party add-ons (advanced charts, granular configuration of graphs, etc…).</p>
<p>Thanks to some industry peer prodding (Jay Jacobs of Verizon’s Risk Intelligence team and Alex Hutton suggesting that ‘Numbers’ is a superior tool for visualizations). I finally bit the bullet, downloaded and then installed R.  For those completely new to R you have to realize that R is a platform to build amazing things upon. It is very command-line like in nature. You type in instructions and it executes. I like this approach because you are forced to learn the R language and syntax. Thus, in the end you will probably understand your data and resulting analysis much better.</p>
<p>One of the first graphics I wanted to explore with R was heat maps. At first, as I was thinking a standard risk management heat map; a 5&#215;5 matrix with issues plotted on the matrix relative to frequency and magnitude. However, when I started searching Google for ‘R heat map’, a similar yet different style of heat map – referred to as a cluster heat map – was first returned in the search results. A cluster heat map is useful for comparing data elements in a matrix against each other depending on how your data is laid out. It is very visual in nature and allows the reader to quickly zero in on data elements or visual information of importance. From an information risk management perspective, if we have quantitative risk information and some metadata, we can begin a discussion with management by leveraging a heat map visualization. If additional information is needed as to why there are dark areas, then we can have the discussion about the underlying quantitative data. Thus, I decided to build a cluster heat map in R.</p>
<p>I referenced three blogs to guide my efforts – they can be found <a href="http://learnr.wordpress.com/2010/01/26/ggplot2-quick-heatmap-plotting/" target="_blank">here</a>, <a href="http://flowingdata.com/2010/01/21/how-to-make-a-heatmap-a-quick-and-easy-solution/" target="_blank">here</a> and <a href="http://www.r-bloggers.com" target="_blank">here</a>. What I am writing here is in no way a complete copy and paste of their content because I provide some additional details on some steps that generated errors for me that in some cases took hours to figure out. This is not unexpected given the difference in data sets.</p>
<p>Let’s do it.</p>
<p>1.    Download and install R. After installation, start an R session. The version of R used for this post is 2.14.0. You can check your version by typing version at the command prompt and pressing ENTER.</p>
<p style="text-align:left;">2.    You will need to download and install the ggplot2 package / library. Do this through the R gui by referencing an online CRAN repository (packages -&gt; install packages …). This method seems to be cleaner then downloading a package to your hard disk and then telling R to install it. In addition, if you reference an online repository, it will also grab any dependent packages at the same time. You can learn more about ggplot2 here.</p>
<p>3.    Once you have installed the ggplot2 package, we have to load it into our current R workspace.</p>
<p style="text-align:center;"><span style="color:#ff0000;">&gt; library(ggplot2)</span></p>
<p style="text-align:left;">4.    Next, we are going to import data to work with in R. Download ‘<a href="//docs.google.com/open?id=0Bz8cH-U2GOVTYTI2MTk2OGUtNWZmMC00MmNhLWE5ZGYtMDU1YTliOGZiMjRk" target="_blank">risktical_csv1.csv</a>’ to your hard disk and execute the following command. Change the file path to match the file path for where you saved the file to.</p>
<p style="text-align:center;"><span style="color:#ff0000;">risk &lt;- read.csv(&#8220;C:/temph/risktical_csv1.csv&#8221;, sep=&#8221;,&#8221;, check.names= FALSE)</span></p>
<p style="text-align:left;padding-left:30px;">a.    We are telling R to import a Comma Separated Value file and assign it to a variable called ‘risk’.<br />
b.    Read.csv is the method or function type of import.<br />
c.    Notice that the slashes in the file name are opposite of what they normally would be when working with other common Windows-based applications.<br />
d.    ‘sep=”,”’ tells R what character is used to separate values within the data set.<br />
e.    ‘check.names=FALSE’ tells R not to check the column headers for correctness. R expects to see only letters, if it sees numbers, it will prepend an X to the column headers – we don’t want that based off the data set we are using.<br />
f.    Once you hit enter, you can type ‘risk’ and hit enter again. The data from the file will be displayed on the screen.</p>
<p style="text-align:left;">5.    Now we need to ‘shape’ the data. The ggplot graphing function we want to use cannot consume the data as it currently is, so we are going to reformat the data first. The ‘melt’ function helps us accomplish this.</p>
<p style="text-align:center;"><span style="color:#ff0000;">risk.m &lt;- melt(risk)</span></p>
<p style="text-align:left;padding-left:30px;">a.    We are telling R to use the melt function against the ‘risk’ variable. Then we are going to take the output from melt and create a new variable called risk.m.<br />
b.    Melt rearranges the data elements. Type ‘help(melt)’ for more information.<br />
c.    After you hit enter, you can type ‘risk.m’ and hit enter again. Notice the way the data is displayed compared to the data prior to ‘melting’ (variable ‘risk’).</p>
<p style="text-align:left;">6.    Next, we have to rescale our numerical values so we can know how to shade any given section of our heat map. The higher the numerical value within a series of data, the darker the color or shade that tile of the heat map should be. The ‘ddply’ function helps us accomplish the rescaling; type ‘help(ddply)’ for more information.</p>
<p style="text-align:center;"><span style="color:#ff0000;">risk.m &lt;- ddply(risk.m, .(variable), transform, rescale = rescale(value), reorder=FALSE)</span></p>
<p style="text-align:left;padding-left:30px;">a.    We are telling R to execute the ‘ddply’ function against the risk.m variable.<br />
b.    We are also passing some arguments to ‘ddply’ telling it to transform and reshape the numerical values. The result of this command produces a new column of values between 0 and 1.<br />
c.    Finally, we pass an argument to ‘ddply’ not to reorder any rows.<br />
d.    After you hit enter, you can type ‘risk.m’ and hit enter again and observe changes to the data elements; there should be two new columns of data.</p>
<p style="text-align:left;">7.    We are now ready to plot our heat map.</p>
<p style="text-align:center;"><span style="color:#ff0000;">(p &lt;- ggplot(risk.m, aes(variable, BU.Name)) + geom_tile(aes(fill = rescale), colour = &#8220;grey20&#8243;) + scale_fill_gradient(low = &#8220;white&#8221;, high = &#8220;red&#8221;))</span></p>
<p style="text-align:left;padding-left:30px;">a.    This command will produce a very crude looking heat map plot.<br />
b.    The plot itself is assigned to a variable called p<br />
c.    ‘scale_fill_gradient’ is the argument that associates color shading to the numerical values we rescaled in step 6. The higher the rescaling value – the darker the shading.<br />
d.    The ‘aes’ function of ggplot is related to aesthetics. You can type in ‘help(aes)’ to learn about the various ‘aes’ arguments.</p>
<p style="text-align:left;">8.    Before we tidy up the plot, let’s set a variable that we will use in formatting axis values in step 9.</p>
<p style="text-align:center;"><span style="color:#ff0000;">base_size &lt;- 9</span></p>
<p style="text-align:left;">9.    Now we are going to tidy up the plot. There is a lot going on here.</p>
<p style="text-align:center;"><span style="color:#ff0000;">p + theme_grey(base_size = base_size) + labs(x = &#8220;&#8221;, y = &#8220;&#8221;) + scale_x_discrete(expand = c(0, 0)) + scale_y_discrete(expand = c(0, 0)) + opts(legend.position = &#8220;none&#8221;, axis.ticks = theme_blank(), axis.text.x = theme_text(size = base_size * 0.8, angle = -90, hjust = 0, colour = &#8220;black&#8221;), axis.text.y = theme_text(size = base_size * 0.8, angle = 0, hjust = 0, colour = &#8220;black&#8221;))</span></p>
<p style="text-align:left;padding-left:30px;">a.    ‘labs(x = &#8220;&#8221;, y = &#8220;&#8221;)’ removes the axis labels.<br />
b.    ‘opts(legend.position = &#8220;none&#8221;’ gets rid of the scaling legend.<br />
c.    ‘axis.text.x = theme_text(size = base_size * 0.8, angle = -90’ sets the X axis text size as well as orientation.<br />
d.    The heat map should look like the image below.</p>
<p style="text-align:left;"><a href="http://risktical.files.wordpress.com/2012/01/risktical_csv1.jpg"><img class="aligncenter size-full wp-image-414" title="risktical_csv1" src="http://risktical.files.wordpress.com/2012/01/risktical_csv1.jpg?w=450&#038;h=473" alt="" width="450" height="473" /></a>A few final notes:</p>
<p>1.    The color shading is performed within series of data, vertically. Thus, in the heat map we have generated, the color for any given tile is relative to the tile above and below it –IN THE SAME COLUMN – or in our case for a given ISO 2700X policy section.</p>
<p>2.    If we transposed our original data set – <a href="//docs.google.com/open?id=0Bz8cH-U2GOVTYzcwNzhkY2UtOTdhYS00YWMyLTk0YzYtOTEwODRjOWI1YTEx" target="_blank">risktical_cvs2</a> – and applied the same commands with the exception of <em>replacing BU.Name with Policy in our initial ggplot command (step 7)</em>, you should get a heat map that looks like the one below.</p>
<p style="text-align:left;"><a href="http://risktical.files.wordpress.com/2012/01/risktical_csv2.jpg"><img class="aligncenter size-full wp-image-415" title="risktical_csv2" src="http://risktical.files.wordpress.com/2012/01/risktical_csv2.jpg?w=450&#038;h=489" alt="" width="450" height="489" /></a>3.    In this heat map, we can quickly determine key areas of exposure for all 36 of our fictional business units relative to ISO 2700X. For example, most of BU3’s exposure is related to Compliance, followed by Organizational Security Policy and Access Control. If the executive in that business unit wanted more granular information in terms of dollar value exposure, we could share that information with them.</p>
<p>So there you have it! A quick R tutorial on developing a cluster heat map for information risk management purposes. I look forward to learning more about R and leveraging it to analyze and visualize data in unique and thought-provoking ways. As always, feel free to leave comments!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/407/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/407/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/407/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=407&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2012/01/20/heat-map-love-r-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2012/01/risktical_csv3.jpg" medium="image">
			<media:title type="html">risktical_csv3</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2012/01/risktical_csv1.jpg" medium="image">
			<media:title type="html">risktical_csv1</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2012/01/risktical_csv2.jpg" medium="image">
			<media:title type="html">risktical_csv2</media:title>
		</media:content>
	</item>
		<item>
		<title>Personal Risk Management</title>
		<link>http://risktical.com/2011/11/04/personal-risk-management/</link>
		<comments>http://risktical.com/2011/11/04/personal-risk-management/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:58:52 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Informational]]></category>
		<category><![CDATA[personal risk management]]></category>
		<category><![CDATA[self-improvement]]></category>

		<guid isPermaLink="false">http://risktical.com/?p=404</guid>
		<description><![CDATA[Somewhere between self-improvement, the feedback process, perception management and total quality management (TQM) is a lesson to be learned and an opportunity for introspection. I want [need] to document a few thoughts about the intersection of these concepts based off recent personal and professional experiences. Self-Improvement. At some point while serving in the Marine Corps [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=404&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Somewhere between self-improvement, the feedback process, perception management and total quality management (TQM) is a lesson to be learned and an opportunity for introspection. I want [need] to document a few thoughts about the intersection of these concepts based off recent personal and professional experiences.</p>
<p><strong>Self-Improvement</strong>. At some point while serving in the Marine Corps it became very obvious that there were three performance paths: be a bad performer and let the system make your life a living heck, be an average performer and let the system carry you along, be a stellar performer and push the system to its limits and possibly change it. I have always chosen to chase after stellar and it has worked pretty well for me over the years. However, in some professions to maintain stellar status – you have to constantly be seeking self-improvement.</p>
<p><strong>Feedback</strong>. The term feedback means different things depending on the context in how it is being used. I find the act of feedback to be challenging both on the giving end as well as the receiving end – especially when it is feedback that is not complimentary. I have had both great and absolutely horrendous experiences – as an actor in both roles. The reality is that having feedback mechanisms in place whether formal or informal is critical to have – regardless of the merit of the feedback or how the feedback was communicated. More on this later when I attempt to tie all of this together.</p>
<p><strong>Perception Management</strong>. Perception is reality to most people regardless of the facts. Anyone that is actively managing their career or personal life probably cares about perception. Furthermore, we probably want to be in control of how people perceive our actions, thoughts, attitudes and even mannerisms – lest it be established by others.</p>
<p><strong>Total Quality Management</strong>. My current school studies are revolving around operations management. Specifically, quality improvement, TQM, Six Sigma, etc. There are concepts around TQM that can be applied to various dimensions of our lives: personal, professional, ethical, moral, giving, etc. Without going down a rabbit hole, I am convinced that quality improvement concepts allow us to construct guard rails (control limits) for the aforementioned dimensions.</p>
<p>So how does all of this tie together?</p>
<p>If you are serious about self-improvement and managing perception – you have to embrace feedback and take into consideration if you are approaching a quality limit if a feedback opportunity presents itself (me being the recipient). You may not agree with the merit of the feedback or agree with the delivery mechanism but you have to listen – just not hear – what is being communicated. This is really hard to do sometimes and how we react to the feedback experience can destroy relationships and further erode trust. When it comes to constructive criticism feedback – if someone is taking the time to give it – regardless of its validity – could this possibly be an indicator that we are approaching some of our quality limits – whether you have defined them or not?</p>
<p>For example, here are two commonly used rules for determining is a process is out of control:<br />
1.    A single point outside the control limits.<br />
2.    Obvious consistent or persistent patterns that suggest that there is something unusual about the data.</p>
<p>Keeping these two rules in mind, we can go through this exercise of introspection. Such an exercise requires one to put their pride on the shelf, set aside emotions, and really try to flush out the opportunity for self improvement. And, if all this can be done in a manner with a redemptive mindset – the better yet. In the end of such an exercise, there should always be one or more questions we should strive to answer:</p>
<p>1.    Is there something minor I can improve on? Is a slight adjustment needed to pull me back from the guard rails or better manage perception?<br />
2.    Is there something major going on that calls for a massive adjustment? Is there really a fire that is producing all this feedback smoke?<br />
3.    Was I a good partner in the feedback process? Did I listen? Did I have a redemptive mindset?</p>
<p>Hear me folks – this topic and what I have outlined is not something I consider myself to be a stellar example of. However, I do care about self-improvement, managing my perception, and adhering to quality in the execution of my responsibilities and will strive to keep in mind what I have outlined moving forward.</p>
<p>That’s it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/404/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/404/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/404/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=404&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/11/04/personal-risk-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenPERT – A FREE Add-In for Microsoft Office Excel</title>
		<link>http://risktical.com/2011/08/15/openpert-%e2%80%93-a-free-add-in-for-microsoft-office-excel/</link>
		<comments>http://risktical.com/2011/08/15/openpert-%e2%80%93-a-free-add-in-for-microsoft-office-excel/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 19:08:35 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[betaPERT]]></category>
		<category><![CDATA[FAIR]]></category>
		<category><![CDATA[OpenPERT]]></category>
		<category><![CDATA[risk analysis]]></category>
		<category><![CDATA[risk modeling]]></category>

		<guid isPermaLink="false">http://risktical.com/?p=391</guid>
		<description><![CDATA[INTRODUCTION. In early June of this year, Jay Jacobs and I started having a long email / phone call discussion about risk modeling, model comparisons, descriptive statistics, and risk management in general. At some point in our conversation the topic of Excel add-ins came up and how nice it would be to NOT have to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=391&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>INTRODUCTION</strong>. In early June of this year, Jay Jacobs and I started having a long email / phone call discussion about risk modeling, model comparisons, descriptive statistics, and risk management in general. At some point in our conversation the topic of Excel add-ins came up and how nice it would be to NOT have to rely upon 3rd party add-ins that cost between hundreds and thousands of dollars to acquire. You can sort of think of the 80-20 rule when it comes to out of the box Excel functionality – though it is probably more like 95-5 depending on your profession – most of the functionality you need to perform analysis is there. However, there are at least two capabilities not included in Excel that are useful for risk modeling and analysis: the betaPERT distribution and Monte Carlo simulation. Thus,  the need for costly 3rd-party add-ins or a free alternative, the OpenPERT add-in.</p>
<p><strong>ABOUT BETAPERT.</strong> You can get very thorough explanations about  the betaPERT distribution <a href="http://en.wikipedia.org/wiki/Beta_distribution" target="_blank">here</a>, <a href="http://www.vosesoftware.com/ModelRiskHelp/index.htm#Distributions/Continuous_distributions/PERT_distribution.htm" target="_blank">here</a>, and <a href="http://www.riskamp.com/library/pertdistribution.php" target="_blank">here</a>. What follows is the ‘cliff notes’ version. The betaPERT distribution is often used for modeling subject matter expert estimates in scenarios where there is no data or not enough of it. The underlying distribution is the beta distribution (which is included in Microsoft Office Excel).  If we can over-simply and define a distribution as a collection or range of values – the betaPERT distribution when initially used with three values, such as minimum, most likely (think mode) and maximum values will create a distribution of values (output) that can then be used for statistical analysis and modeling. By introducing a fourth parameter – which I will refer to as confidence, regarding the ‘most likely’ estimate – we can account for the kurtosis – or peakedness – of the distribution.</p>
<p><strong>WHO USES BETAPERT?</strong> There are a few professions and disciplines that leverage the betaPERT distribution:</p>
<p><span style="text-decoration:underline;">Project Management</span> – The project management profession is most often associated with betaPERT. PERT stands for Program (or Project) Evaluation and Review Technique. PERT was developed by the Navy and Booz-Allen-Hamilton back in the 1950’s (ref.1; see below ) – as part of the Polaris missile program. Anyway, it is often used today in project management for project / task planning and I believe it is covered as part of the PMP certification curriculum.</p>
<p><span style="text-decoration:underline;">Risk Analysis / Modeling</span> – There are some risk analysis scenarios where due to a lack of data, estimates are used to bring form to components of scenarios that factor into risk. The FAIR methodology – specifically some tools that leverage the FAIR methodology as applied to IT risk – is such an example of using betaPERT for risk analysis and risk modeling.</p>
<p><span style="text-decoration:underline;">Ad-Hoc Analysis</span> – There are many times where having access to a distribution like betaPERT is useful outside the disciplines listed above. For example, if a baker is looking to compare the price of her/his product with the rest of the market &#8211; data could be collected, a distribution created, and analysis could occur. Or, maybe a church is analyzing its year to year growth and wants to create a dynamic model that accounts for both probable growth and shrinkage – betaPERT can help with that as well.</p>
<p><strong>OPENPERT ADD-IN FOR MICROSOFT OFFICE EXCEL.</strong> Jay and I developed the OpenPERT add-in as an alternative to paying money to leverage the betaPERT distribution. Of course, we underestimated the complexity of not only creating an Excel add-in but also working with the distribution itself and specific cases where divide by zero errors can occur. That said, we are very pleased with version 1.0 of OpenPERT and are excited about future enhancements as well as releasing examples of problem scenarios that are better understood with betaPERT analysis. Version 1.0 has been tested on Microsoft Office Excel 2007 and 2010; on both 32 bit and 64 bit Microsoft Windows operating systems. Version 1.0 of OpenPERT is not supported on ANY Microsoft Office for Mac products.</p>
<p>The project home of OpenPERT is <a href="http://code.google.com/p/openpert/" target="_blank">here</a>.</p>
<p>The downloads page is <a href="http://code.google.com/p/openpert/downloads/list" target="_blank">here</a>. Even if you are familiar with the betaPERT distribution, please read the reference guide before installing and using the OpenPERT add-in.</p>
<p>Your feedback is welcome via support@openpert.org</p>
<p>Finally – On behalf of Jay and myself &#8211; a special thank you to members of the Society of Information Risk Analysts (SIRA) that helped test and provided feedback on the OpenPERT add-in. Find out more about SIRA <a href="http://www.societyinforisk.org/" target="_blank">here</a>.</p>
<p><em>Ref. 1 &#8211; Malcolm, D. G., J. H. Roseboom, C. E. Clark, W. Fazar Application of a Technique for Research and Development Program Evaluation OPERATIONS RESEARCH Vol. 7, No. 5, September-October 1959, pp. 646-669</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/391/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=391&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/08/15/openpert-%e2%80%93-a-free-add-in-for-microsoft-office-excel/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>Metricon 6 Wrap-Up</title>
		<link>http://risktical.com/2011/08/10/metricon-6-wrap-up/</link>
		<comments>http://risktical.com/2011/08/10/metricon-6-wrap-up/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:41:20 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Information Security]]></category>
		<category><![CDATA[Risk]]></category>
		<category><![CDATA[Risk Modeling]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[information risk management]]></category>
		<category><![CDATA[information security]]></category>
		<category><![CDATA[metricon]]></category>
		<category><![CDATA[metricon 6]]></category>
		<category><![CDATA[metrics]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=387</guid>
		<description><![CDATA[Metricon 6 was held in San Francisco, CA on August 9th, 2011. A few months ago, I and a few others were asked by the conference chair – Mr. Alex Hutton (@alexhutton) – to assist in the planning and organization of the conference. One of the goals established early-on was that this Metricon needed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=387&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Metricon 6 was held in San Francisco, CA on August 9th, 2011. A few months ago, I and a few others were asked by the conference chair – Mr. Alex Hutton (@alexhutton) – to assist in the planning and organization of the conference. One of the goals established early-on was that this Metricon needed to be different then previous Metricon events. Having attended Metricon 5, I witnessed firsthand the inquisitive and skeptical nature of the conference attendees towards speakers and towards each other. So, one of our goals for Metricon 6 was to change the culture of the conference. In my opinion, we succeeded in doing that by establishing topics that would draw new speakers and strike a happy balance between metrics, security and information risk management.</p>
<p>Following are a few Metricon 6 after-thoughts&#8230;</p>
<p><strong>Venue:</strong> This was my first non-military trip to San Francisco. I loved the city! The vibe was awesome! The sheer number of people made for great people-watching entertainment and so many countries / cultures were represented everywhere I went. It gave a whole new meaning to America being a melting pot of the world.</p>
<p><strong>Speakers:</strong> We had some great speakers at Metricon. Every speaker did well, the audience was engaged, and while questions were limited due to time – they took some tough questions and dealt with them appropriately.</p>
<p><a href="http://metricon6.files.wordpress.com/2011/08/metricon6_program_final.pdf" target="_blank">Full list of speakers and presentations…</a></p>
<p><strong>Favorite Sessions</strong>: Three of the 11 sessions stood out to me:</p>
<p><span style="text-decoration:underline;">Jake Kouns – Cyber Insurance</span>. I enjoyed this talk for a few reasons: a. it is an area of interest I have and b. the talk was easy to understand. I would characterize it as an overview of what cyber insurance is [should be] as well as some of the some of the nuances. Keeping in mind it was an overview – commercial insurance policies can be very complex – especially for large organizations. Some organizations do not buy separate “cyber insurance” policies – but utilize their existing policies to cover potential claims / liability arising from operational information technology failures or other scenarios. Overall – Jake is offering a unique product and while I would like to know more details – he appears to be well positioned in the cyber insurance product space.</p>
<p><span style="text-decoration:underline;">Allison Miller / Itai Zukerman – Operationalizing Analytics</span>. Alli and Itai went from 0 to 60 in about 5 seconds. They presented some work that brought together data collection, modeling and analysis- in less then 30 minutes. Itai was asked a question about the underlying analytical engine used – and he just nonchalantly replied ‘I wrote it in Java myself’ – like it was no big deal. That was hot.</p>
<p><span style="text-decoration:underline;">Richard Lippman – Metrics for Continuous Network Monitoring</span>. Richard gave us a glimpse of a real-time monitoring application; specifically, tracking un-trusted devices on protected subnets. The demo was very impressive and probably gave a few in the room some ‘metrigasms’ (I heard this phrase from @mrmeritology).</p>
<p><strong>People</strong>: All the attendees and speakers were cordial and professional. By the end of the day – the sense of community was stronger then what we started with. A few quick shout-outs:</p>
<p><span style="text-decoration:underline;">Behind-the-scenes contributors / organizers</span>. The Usenix staff helped us out a lot over the last few months. We also had some help from Richard Baker who performed some site reconnaissance in an effort to determine video recording / video streaming capabilities – thank you sir. There were a few others that helped in selecting conference topics – you know who you are – thank you!</p>
<p><span style="text-decoration:underline;">@chort0 and his lovely fiancé Meredith</span>. They pointed some of us to some great establishments around Union Square. Good luck to the two of you as you go on this journey together.</p>
<p><span style="text-decoration:underline;">@joshcorman</span>. I had some great discussion with Josh. While we have only known each other for a few months – he has challenged me to think about questions [scenarios] that no one else is addressing.</p>
<p><span style="text-decoration:underline;">+Wendy Nather</span>. Consummate professional. Wendy and I have known of each other for a few years but never met in person prior to Metricon6. We had some great conversation; both professional and personal. She values human relationships and that is more important in my book then just the social networking aspect.</p>
<p><span style="text-decoration:underline;">@alexhutton &amp; @jayjacobs</span> – yep – it rocked. Next… ?</p>
<p><span style="text-decoration:underline;"><strong>All the attendees</strong></span>. Without attendance, there is no Metricon. The information sharing, hallway collaboration and presentation questions contributed greatly to the event. Thank you!</p>
<p>***</p>
<p>So there you go everyone! It was a great event! Keep your eyes and ears open for information about the next Metricon. Consider reanalyzing your favorite conferences and if you are looking for small, intimate and stimulating conferences – filled with thought leadership and progressive mindsets – give Metricon a chance!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=387&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/08/10/metricon-6-wrap-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>Risk Vernacular Update</title>
		<link>http://risktical.com/2011/08/02/risk-vernacular-update/</link>
		<comments>http://risktical.com/2011/08/02/risk-vernacular-update/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 12:23:11 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[metricon]]></category>
		<category><![CDATA[risk terminology]]></category>
		<category><![CDATA[risk vernacular]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=384</guid>
		<description><![CDATA[It has been a few years since I updated the “risk vernacular” portion of this blog. Based off some college-level  insurance and risk management courses as well as some work I am doing in the operational risk management space – there are some new terms I wanted to share as well as update some existing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=384&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It has been a few years since I updated the “<a href="http://risktical.wordpress.com/risk-vernacular/" target="_blank">risk vernacular</a>” portion of this blog. Based off some college-level  insurance and risk management courses as well as some work I am doing in the operational risk management space – there are some new terms I wanted to share as well as update some existing terms based off new information / knowledge. If it has been a while since you reviewed the page – take a few minutes to look at the <a href="http://risktical.wordpress.com/risk-vernacular/" target="_blank">page</a>. Enjoy!</p>
<p>BTW, I will be in San Francisco on August 9th and 10th for <a href="https://www.securitymetrics.org/content/Wiki.jsp?page=Metricon6.0" target="_blank">Metricon 6</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/384/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=384&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/08/02/risk-vernacular-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>What’s Your Target?</title>
		<link>http://risktical.com/2011/05/19/what%e2%80%99s-your-target/</link>
		<comments>http://risktical.com/2011/05/19/what%e2%80%99s-your-target/#comments</comments>
		<pubDate>Thu, 19 May 2011 16:32:08 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[business executive]]></category>
		<category><![CDATA[IT executive]]></category>
		<category><![CDATA[risk management]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=375</guid>
		<description><![CDATA[Been awhile since I publicly blogged. Between family, work, school, podcasting, helping run the Society of Information Risk Analysts (SIRA) and some public speaking &#8211; time has been limited. I want to briefly write about targets today. I have had the privilege to speak twice in the month of May. The first engagement was at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=375&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://risktical.files.wordpress.com/2011/05/target_05192011.jpg"><img class="aligncenter size-full wp-image-376" title="target_05192011" src="http://risktical.files.wordpress.com/2011/05/target_05192011.jpg?w=450&#038;h=308" alt="" width="450" height="308" /></a></p>
<p>Been awhile since I publicly blogged. Between family, work, <a href="http://www.osu.edu/" target="_blank">school</a>, <a href="http://riskhose.com/" target="_blank">podcasting</a>, helping run the Society of Information Risk Analysts (<a href="http://societyinforisk.org/" target="_blank">SIRA</a>) and some public speaking &#8211; time has been limited. I want to briefly write about targets today.</p>
<p>I have had the privilege to speak twice in the month of May. The first engagement was at <a href="http://secure360.org/2011-sessions" target="_blank">Secure360</a>, an awesome regional information security conference based out of St. Paul, Minnesota. Mr. Jack Jones and I partnered up to give a talk about having a ‘seat at the table’. Specifically, speaking in a language that our IT and business leaders understand, establishing perspective, gaining influence, and providing value to our leaders so they can effectively manage risk. The talk appeared to be well received and there have been a few follow-up conversations with some information security professionals that want to up their game – which was the point to begin with.</p>
<p>Earlier this week I had the privilege to speak about IT risk management – specifically IT risk quantification – as part of the ‘<a href="http://webapps.uky.edu/ukitdev/content/cio-practicum" target="_blank">CIO Practicum</a>’ series at the University of Kentucky. The theme of this particular event was “Security for Grown-Ups”. I found myself in a room of IT and business executives who came to get a glimpse of how information risk management functions can begin adding value to the business or organization. My take-away from the event was that IT and business executives are craving value-add from information risk management functions (security, continuity management, compliance, etc.). Let me repeat in bold capital letters: <strong>IT AND BUSINESS EXECUTIVES ARE CRAVING VALUE FROM INFORMATION RISK MANAGEMENT FUNCTIONS</strong>.</p>
<p>So here is the dilemma. Information risk management professionals want to add value and our IT and business executives want [expect] value. How can we achieve goodness?</p>
<p>In order to achieve goodness, you and your leadership have to define it for your organization – you have to have a vision or a target to direct your efforts toward. It requires relationship building with your leadership and executives to develop a sense of mutual trust, perspective and shared understanding about why the organization exists, how the information risk management function fits into the organization as well as how the information risk management function contributes to helping the organization reach its goals and fulfill its strategy.</p>
<p>If you are an information risk practitioner, security, continuity management or compliance professional – what is the target that the outcomes of your efforts are directed towards? If you don’t know – figure it out quickly. Better yet – if your manager or other leaders cannot tell you then be proactive and work with your leadership to help define it.</p>
<p>If you are an IT or business executive that happened to stumble on this blog post – let me ask you a question. Have you established a vision or target for your information risk management function(s) to direct their efforts toward? If so – how is it working out? Is value being added? If a vision or target has not been established, why not?</p>
<p>Thoughts?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/375/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=375&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/05/19/what%e2%80%99s-your-target/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/05/target_05192011.jpg" medium="image">
			<media:title type="html">target_05192011</media:title>
		</media:content>
	</item>
		<item>
		<title>Deconstructing Some HITECH Hype</title>
		<link>http://risktical.com/2011/02/23/deconstructing-some-hitech-hype/</link>
		<comments>http://risktical.com/2011/02/23/deconstructing-some-hitech-hype/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 14:07:36 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[Risk Modeling]]></category>
		<category><![CDATA[FAIR]]></category>
		<category><![CDATA[HITECH]]></category>
		<category><![CDATA[information risk management]]></category>
		<category><![CDATA[loss frequency]]></category>
		<category><![CDATA[risk analysis]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=369</guid>
		<description><![CDATA[A few days ago I began analyzing some model output and noticed that the amount of loss exposure for ISO 27002 section “Communications and Operations Management” had increased by 600% in a five week time frame. It only took a few seconds to zero-in on an issue that was responsible for the increase. The issue [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=369&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few days ago I began analyzing some model output and noticed that the amount of loss exposure for ISO 27002 section “Communications and Operations Management” had increased by 600% in a five week time frame. It only took a few seconds to zero-in on an issue that was responsible for the increase.</p>
<p>The issue was related to a gap with a 3rd party of which there was some Health Information Technology for Economic and Clinical Health Act (HITECH) fine exposure. The estimated HITECH fines were really LARGE. Large in the sense that the estimates:</p>
<p>a.    Did not pass the sniff test<br />
b.    Could not be justified based off any documented fines / or statutes.<br />
c.    From a simulation perspective were completely skewing the average simulated expected loss value for the scenario itself.</p>
<p>I reached out to better understand the rationale of the practitioner who performed the analysis and after some discussion we were in agreement that some additional analysis was warranted to accurately represent assumptions as well as refine loss magnitude estimates – especially for potential HITECH fines. About 10 minutes of additional information gathering yielded valuable information.</p>
<p>In a nutshell, the HITECH penalty structure is a tiered system that takes into consideration the nature of the data breach, the fine per violation and maximum amounts of fines for a given year. See below (the tier summary is from link # 2 at the bottom of this post; supported by links # 1 and 3):</p>
<p><strong>Tier A</strong> is for violations in which the offender didn’t realize he or she violated the Act and would have handled the matter differently if he or she had. This results in a $100 fine for each violation, and the total imposed for such violations cannot exceed $25,000 for the calendar year.</p>
<p><strong>Tier B</strong> is for violations due to reasonable cause, but not “willful neglect.” The result is a $1,000 fine for each violation, and the fines cannot exceed $100,000 for the calendar year.</p>
<p><strong>Tier C</strong> is for violations due to willful neglect that the organization ultimately corrected. The result is a $10,000 fine for each violation, and the fines cannot exceed $250,000 for the calendar year.</p>
<p><strong>Tier D</strong> is for violations of willful neglect that the organization did not correct. The result is a $50,000 fine for each violation, and the fines cannot exceed $1,500,000 for the calendar year.</p>
<p>Given this information and the nature of the control gap – one can quickly determine the penalty tier as well as estimate fine amounts. The opportunity cost to gather this additional information was minimal and the benefits of the additional analysis will result  in not only more accurate and defendable analysis – but also spare the risk practitioner from what would have been certain scrutiny from other IT risk leaders and possibly business partner allegations of IT Risk Management once again “crying wolf”.</p>
<p>Key Take-Away(s)</p>
<p>1.    Perform sniff tests on your analysis; have others review your analysis.<br />
2.    There is probably more information then you realize about the problem space you are dealing with.<br />
3.    Be able to defend assumptions and estimates that you make.<br />
4.    Become the “expert” about the problem space not the repeater of information that may not be valid to begin with.</p>
<p>Links / References associated with this post:</p>
<p>1.   <a href="http://www.hhs.gov/ocr/privacy/hipaa/administrative/enforcementrule/enfifr.pdf" target="_blank"> HIPAA Enforcement Rule ref. HITECH</a> &lt;- lots of legalese<br />
2.    <a href="http://www.muhealth.org/documents/compliance/HITECHACT.pdf" target="_blank">HITECH Summary</a> &lt;- less legalese<br />
3.   <a href="http://en.wikisource.org/wiki/American_Recovery_and_Reinvestment_Act_of_2009/Division_A/Title_XIII/Subtitle_D/Part_1#Part_1" target="_blank"> HITECH Act scroll down to section 13410 for fine information</a> &lt;-lots of legalese<br />
4.    <a href="http://www.hitechanswers.net/hipaa-fines-realized/" target="_blank">Actual instance of a HITECH-related fine</a><br />
5.    <a href="http://www.securityprivacyandthelaw.com/2011/02/articles/government-enforcement/500-is-a-magic-number-health-information-breaches-impacting-499-or-fewer-patients-likely-go-uninvestigated-by-ocr/" target="_blank">Interesting Record Loss Threshold Observation; Is 500 records the magic number?</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=369&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/02/23/deconstructing-some-hitech-hype/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Risk Model (Part 4 of 5):  Simulating both Loss Frequency &amp; Loss Magnitude</title>
		<link>http://risktical.com/2011/02/05/simple-risk-model-part-4-of-5-simulating-both-loss-frequency-loss-magnitude/</link>
		<comments>http://risktical.com/2011/02/05/simple-risk-model-part-4-of-5-simulating-both-loss-frequency-loss-magnitude/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 00:34:24 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[Risk Modeling]]></category>
		<category><![CDATA[IT risk]]></category>
		<category><![CDATA[it risk modeling]]></category>
		<category><![CDATA[quantifying risk]]></category>
		<category><![CDATA[SIRA]]></category>
		<category><![CDATA[Society of Information Risk Analysts]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=361</guid>
		<description><![CDATA[Part 1 – Simulate Loss Frequency Method 1 Part 2 – Simulate Loss Frequency Method 2 Part 3 – Simulate Loss Frequency Method 3 In this post we want to combine the techniques demonstrated in parts two and three into a single simulation. To accomplish this simulation we will: 1.    Define input parameters 2.    Introduce [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=361&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://risktical.wordpress.com/2010/10/25/simple-risk-model-part-1-of-5-simulate-loss-frequency-1/" target="_blank">Part 1 – Simulate Loss Frequency Method 1</a><br />
<a href="http://risktical.wordpress.com/2010/11/01/simple-risk-model-part-2-of-5-simulate-loss-frequency-2/" target="_blank">Part 2 – Simulate Loss Frequency Method 2</a><br />
<a href="http://risktical.wordpress.com/2010/12/22/simple-risk-model-part-3-of-5-simulate-loss-magnitude/" target="_blank">Part 3 – Simulate Loss Frequency Method 3</a></p>
<p>In this post we want to combine the techniques demonstrated in parts two and three into a single simulation. To accomplish this simulation we will:</p>
<p>1.    Define input parameters<br />
2.    Introduce VBA code – via a macro &#8211; that consumes the input parameters<br />
3.    Perform functions within the VBA code<br />
4.    Take the output from functions and store them in the spreadsheet<br />
5.    Create a histogram of the simulation output.</p>
<p>Steps 3 &amp; 4 will be performed many times; depending on the number of iterations we want to perform in our simulation.</p>
<p>You can download <a href="https://docs.google.com/leaf?id=0Bz8cH-U2GOVTMmMyOTQ2ZTktM2VhZS00NGJkLThhYzAtMzkwM2JiZjNhZjNk&amp;hl=en&amp;authkey=CM71zP4D" target="_blank">this spreadsheet</a> to use as a reference throughout the post. The spreadsheet should be used in Excel only. The worksheets we are concerned with are:</p>
<p>test – This worksheet contains code that will step through each part of the loss magnitude potion of the simulation. By displaying this information, it allows you to validate that both the code and calculations are functioning as coded. This tab is also useful for testing code in small iterations. Thus, the number of iterations should be kept fairly low (“test”; B1).</p>
<p>prod – Unlike the “test” tab, this tab does not display the result of each loss magnitude calculation per iteration. This is the tab that you would want to run the full simulation on; thousands of iterations.</p>
<p>Here we go…and referencing the “prod” worksheet…<br />
<a href="http://risktical.files.wordpress.com/2011/02/model_4_input.jpg"><img class="aligncenter size-full wp-image-362" title="model_4_input" src="http://risktical.files.wordpress.com/2011/02/model_4_input.jpg?w=450" alt=""   /></a><br />
<strong>Input Parameters. </strong><br />
<span style="text-decoration:underline;">Expected Loss Frequency.</span> It is assumed for this post that you have estimated or derived a most likely or average loss frequency value. Cell B2 contains this value. The value in this cell will be one of the input parameters into a POISSON probability distribution to return an inverse cumulative value (Part 2 of this Series).</p>
<p><span style="text-decoration:underline;">Average Loss Magnitude.</span> It is assumed for this post that you have estimated or derived a most likely or average loss magnitude value. Cell B3 contains this value. The value in this cell will be one of the input parameters into a NORMAL probability distribution to return an inverse cumulative value (Part 3 of this Series).</p>
<p><span style="text-decoration:underline;">Loss Magnitude Standard Deviation.</span> It is assumed for this post that you have estimated or derived the standard deviation for loss magnitude. Cell B4 contains this value. The value in this cell will be one of the input parameters into a NORMAL probability distribution to return an inverse cumulative value (Part 3 of this Series).</p>
<p><a href="http://risktical.files.wordpress.com/2011/02/model_4_output.jpg"><img class="aligncenter size-full wp-image-363" title="model_4_output" src="http://risktical.files.wordpress.com/2011/02/model_4_output.jpg?w=450" alt=""   /></a></p>
<p><strong>The Simulation.</strong><br />
On the “prod” tab, when you click the button labeled “Prod” – this will execute a macro composed of VBA code. I will let you explore the code on your own – it is fairly intuitive. I also left a few comments in the VBA so I remember what certain sections of the code are doing. There are four columns of simulation output that the macro will generate.</p>
<p><span style="text-decoration:underline;">Iter# (B10).</span> This is the iteration number. In cell B1 we set the number of iterations to be 5000. Thus, the VBA will cycle through a section of its code 5000 times.</p>
<p><span style="text-decoration:underline;">LEF Random (C10). </span>For each iteration, we will generate a random value between 0 and 1 to be used in generating a loss frequency value. Displaying the random value in the simulation is not necessary, but I prefer to see it so I can informally analyze the random values themselves and gauge the relationship between the random value and the inverse cumulative value in the next cell.</p>
<p><span style="text-decoration:underline;">LEF Value (D10).</span> For each iteration, we will use the random value we generated in the adjacent cell (column c), combine it with the Expected Loss Frequency value declared in B2 and input these values as parameters into a POISSON probability distribution that returns an inverse cumulative value. The value returned will be an integer – a whole number. Why a whole number? Because you can’t have half a loss event &#8211; just like a woman cannot be half pregnant ( &lt;- one of my favorite analogies). This is a fairly important concept to realize from a loss event modeling perspective.</p>
<p><span style="text-decoration:underline;">Loss Magnitude (E10).</span> For each iteration, we will consume the value in the adjacent cell (column D) and apply logical rules to it.</p>
<p>a.    If the LEF Value = 0, then the loss magnitude is zero.<br />
b.    If the LEF Value &gt; 0, then for each instance of loss we will:<br />
1.    Generate a random value<br />
2.    Consume the average loss magnitude value in cell B3<br />
3.    Consume the loss magnitude standard deviation in cell B4<br />
4.    Use the values referenced in 1-3 as input parameters into a Normal probability distribution and return an inverse cumulative value. In other words, given a normal distribution with mean $2000 and standard deviation of $1000 – what is the value of that distribution point given a random value between 0 and 1.<br />
5.    We will add all the instances of loss for that iteration and record the sum in column E.</p>
<p><em>Note: Steps 4 and 5 can be observed on the “test” worksheet by clicking the button labeled “test”.</em></p>
<p>The code will continue to loop until we have completed the number of iterations we specified in cell B1.</p>
<p><a href="http://risktical.files.wordpress.com/2011/02/model_4_results1.jpg"><img class="aligncenter size-full wp-image-364" title="model_4_results1" src="http://risktical.files.wordpress.com/2011/02/model_4_results1.jpg?w=450" alt=""   /></a></p>
<p><strong>The Results.</strong> Now that the simulation is complete we can begin to analyze the output.</p>
<p><span style="text-decoration:underline;"># of Iterations With No Loss (B5).</span> This is the number of iterations where the returned inverse cumulative value was zero.</p>
<p><span style="text-decoration:underline;"># of Iterations With Loss (B6).</span> This is the number of iterations where the returned inverse cumulative value was greater than zero.</p>
<p><span style="text-decoration:underline;"># of Loss Events (B7).</span> This is the sum of loss events for all the iterations. There was some iteration where there was more then one loss event.</p>
<p><span style="text-decoration:underline;">Max. # of Loss Events for an iteration (B8).</span> This is the maximum number of loss events for any given iteration.</p>
<p><a href="http://risktical.files.wordpress.com/2011/02/model_4_results2.jpg"><img class="aligncenter size-full wp-image-365" title="model_4_results2" src="http://risktical.files.wordpress.com/2011/02/model_4_results2.jpg?w=450&#038;h=138" alt="" width="450" height="138" /></a></p>
<p>Next, let’s look at some of the simulation output in the context of loss severity; $.</p>
<p><span style="text-decoration:underline;">Min. Loss (K6).</span> This is minimum loss value returned from the simulation. I round the results to the nearest hundred in the worksheet.</p>
<p><span style="text-decoration:underline;">Max. Loss (K7).</span> This is maximum loss value returned from the simulation. I round the results to the nearest hundred in the worksheet.</p>
<p><span style="text-decoration:underline;">Median (G5).</span> This is the 50th percentile of the simulation results. In other words, 50% of the simulations results were equal to or less then this value.</p>
<p><span style="text-decoration:underline;">Average (G6).</span> This is the average loss value for the simulation. This is the quotient of summing all the loss magnitude values and dividing by the number of iterations. This value can quickly be compared to the median to make inferences about the skew of the simulation output.</p>
<p><span style="text-decoration:underline;">80th % (G7).</span> This is the 80th percentile of the simulation results. In other words, 80% of the simulations results were equal to or less then this value. In some industries, this is often referred to as the 1-in-5 loss.</p>
<p><span style="text-decoration:underline;">90th % (G8).</span> This is the 90th percentile of the simulation results. In other words, 90% of the simulations results were equal to or less then this value. In some industries, this is often referred to as the 1-in-10 loss.</p>
<p><span style="text-decoration:underline;">95th % (G9).</span> This is the 95th percentile of the simulation results. In other words, 95% of the simulations results were equal to or less then this value. In some industries, this is often referred to as the 1-in-20 loss.</p>
<p><span style="text-decoration:underline;">99th % (G10).</span> This is the 99th percentile of the simulation results. In other words, 99% of the simulations results were equal to or less then this value. In some industries, this is often referred to as the 1-in-100 loss.</p>
<p><em>Note 2: Generally speaking, the 95th, 99th and greater percentiles are often considered as being part of the tail of the loss distribution. I consider all the points in cells G5:G10 to be useful. For some loss exposures, the median and average values are more than enough to make informed decisions. For some loss exposures; the 80th, 90th, 95th, 99th and even larger percentiles are necessary.</em></p>
<p><a href="http://risktical.files.wordpress.com/2011/02/model_4_results_3.jpg"><img class="aligncenter size-full wp-image-366" title="model_4_results_3" src="http://risktical.files.wordpress.com/2011/02/model_4_results_3.jpg?w=450&#038;h=262" alt="" width="450" height="262" /></a></p>
<p><strong>Simulated Loss Magnitude Histogram.</strong> A histogram is a graphical representation showing the distribution of data. The histogram in the “prod” worksheet represents the distribution of data for all iterations where the loss was greater than zero.</p>
<p><strong>Wrap Up.</strong> What I have presented in this post is a very simple model for a single loss exposure using randomness and probability distributions. Depending on your comfort level with VBA and creativity, one can easily build out more complex models; whether it is hundreds of loss exposures you want to model for or just a few dependent loss exposures.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=361&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/02/05/simple-risk-model-part-4-of-5-simulating-both-loss-frequency-loss-magnitude/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/02/model_4_input.jpg" medium="image">
			<media:title type="html">model_4_input</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/02/model_4_output.jpg" medium="image">
			<media:title type="html">model_4_output</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/02/model_4_results1.jpg" medium="image">
			<media:title type="html">model_4_results1</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/02/model_4_results2.jpg" medium="image">
			<media:title type="html">model_4_results2</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2011/02/model_4_results_3.jpg" medium="image">
			<media:title type="html">model_4_results_3</media:title>
		</media:content>
	</item>
		<item>
		<title>Risk Fu Fighting</title>
		<link>http://risktical.com/2011/01/31/risk-fu-fighting/</link>
		<comments>http://risktical.com/2011/01/31/risk-fu-fighting/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 12:22:00 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[information risk management]]></category>
		<category><![CDATA[SIRA]]></category>

		<guid isPermaLink="false">http://risktical.wordpress.com/?p=356</guid>
		<description><![CDATA[If you are an information risk analyst or perform any type of IT risk analysis – you should really consider joining the Society of Information Risks Analysts mailing list. Over the last several weeks there have been some amazing exchanges of ideas, opinions, and spirited debate over the legitimacy and value of risk analysis. Some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=356&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://risktical.com/2011/01/31/risk-fu-fighting/"><img src="http://img.youtube.com/vi/lTiSzFp4arg/2.jpg" alt="" /></a></span>
<p>If you are an information risk analyst or perform any type of IT risk analysis – you should really consider joining the Society of Information Risks Analysts mailing list. Over the last several weeks there have been some amazing exchanges of ideas, opinions, and spirited debate over the legitimacy and value of risk analysis. Some of the content is no doubt a pre-cursor to the anxiously awaited “Risk Management Smackdown” at RSA on 2/15. Regardless of my role within SIRA or the upcoming RSA debate, the SIRA mailing list is a great resource for learning more about IT risk analysis and IT risk management in general.</p>
<p>Below are a couple of links:</p>
<p><a href="http://societyinforisk.org/" target="_blank">Society of Information Risk Analysts (SIRA)</a><br />
<a href="http://lists.societyinforisk.org/mailman/listinfo/sira" target="_blank">Society of Information Risk Analysts – Mailing List</a><br />
<a href="http://lists.societyinforisk.org/mailman/private/sira/" target="_blank">Society of Information Risk Analysts – Mailing List Archives</a> (must be subscribed to the mailing list to view)<br />
<a href="https://cm.rsaconference.com/US11/catalog/catalog/catalog.jsp" target="_blank">RSA Session Catalog</a> (filter on security tag “risk management”)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=356&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2011/01/31/risk-fu-fighting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>
	</item>
		<item>
		<title>[BOOK REVIEW] The Communicators: Leadership in the Age of Crisis</title>
		<link>http://risktical.com/2010/12/23/book-review-the-communicators-leadership-in-the-age-of-crisis/</link>
		<comments>http://risktical.com/2010/12/23/book-review-the-communicators-leadership-in-the-age-of-crisis/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 14:33:33 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Risk]]></category>
		<category><![CDATA[Levick]]></category>
		<category><![CDATA[loss magnitude]]></category>
		<category><![CDATA[reputation risk]]></category>
		<category><![CDATA[risk analysis]]></category>

		<guid isPermaLink="false">http://risktical.com/?p=348</guid>
		<description><![CDATA[I just finished reading The Communicators: Leadership in the Age of Crisis by Richard Levick and Charles Slack. For regular readers of this blog – you may recall a two part series back in 2009 on this blog – here and here &#8211; where Mr. Levick participated in a question and answer format on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=348&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://risktical.files.wordpress.com/2010/12/thecomm_122310.jpg"><img class="aligncenter size-full wp-image-351" title="thecomm_122310" src="http://risktical.files.wordpress.com/2010/12/thecomm_122310.jpg?w=450&#038;h=336" alt="" width="450" height="336" /></a></p>
<p>I just finished reading<a href="http://www.amazon.com/Communicators-Leadership-Age-Crisis/dp/0975998536/ref=sr_1_3?ie=UTF8&amp;s=books&amp;qid=1288118345&amp;sr=8-3" target="_blank"><em> The Communicators: Leadership in the Age of Crisis</em></a> by Richard Levick and Charles Slack. For regular readers of this blog – you may recall a two part series back in 2009 on this blog – <a href="http://risktical.com/2009/08/05/reputation-risk-qa-%E2%80%93-richard-levick-1-of-2/" target="_blank">here</a> and <a href="http://risktical.com/2009/08/06/reputation-risk-qa-%E2%80%93-richard-levick-2-of-2/" target="_blank">here</a> &#8211; where Mr. Levick participated in a question and answer format on the topic of reputation risk. I have a lot of respect for the work Mr. Levick and his firm <a href="http://www.levick.com/" target="_blank">Levick Strategic Communications</a> performs for their clients. “Why?” you might ask; the answer is risk management and leadership management.</p>
<p>***</p>
<p><strong>RISK MANAGEMENT</strong></p>
<p>The majority of the readers of this blog have information risk management backgrounds. So I will speak to risk management first. I am going to define risk as the probable frequency and probable magnitude of future loss. For those familiar with the <a href="http://riskmanagementinsight.com/faq#what" target="_blank">FAIR</a> risk analysis methodology – specifically the taxonomy – you will recall that in the “loss magnitude” side of the taxonomy there are concepts such as “duration of loss”, “effect of loss” and “secondary stakeholders” that can inflict secondary loss against our company when a bad event occurs.</p>
<p><em>The Communicators</em> is filled with examples about how an individual, business leaders, or organizations as a whole – can impact (both good and bad) the duration and effect of loss as well as effectively manage the perceptions of secondary stakeholders – when a bad event (or crisis) occurs. As risk practitioners, it is no longer acceptable to just know that a big loss event can impact our employer’s reputation or other more-tangible loss forms. We have to be able give real –yet practical – scenarios and examples of loss forms. Better yet, we need to offer additional value by asking tough questions that could shed light on a systemic weakness in existing plans to deal with a crisis when it does occur.</p>
<p>For the information risk practitioner, the following sections stood out to me:</p>
<p><span style="text-decoration:underline;">Section 1: The Blind Spot</span>. While this section is more about courage and leadership; there are time honored nuggets of wisdom in this section that we should embrace no matter what your role or title in the organization is.</p>
<p><span style="text-decoration:underline;">Section 6: Leadership in the Digital Era</span>. Social media is a double-edged sword – every information risk practitioner knows it. While social media can enable our company it can also be an information distribution mechanism that can damage our company’s reputation and ability to minimize loss in minutes compared to days, weeks or even months. Read this section to get great perspective on social media and the risks associated with it.</p>
<p><em>Note: With regards to the subject of risk management and its relationship with “bad” events. A crisis does not need to be initiated by something “bad” or an actual loss event. The Communicators gives a few examples of these scenarios (Rule #35; When Facts Don’t Matter, Forget The Facts).</em></p>
<p>***</p>
<p><strong>LEADERSHIP MANAGEMENT</strong></p>
<p>As a former Marine, I cringe when I hear the words manager and leader used synonymously. Some organizations now even call all their managers “people leaders”. Philosophically, I can appreciate what is trying to be accomplished. But let’s face it there are managers out there that could not lead their teams out of an open door. I make such analogies to convey that leadership means something special to me. Thus, when I pick up a book that contains advice or examples of leadership – it better be good. <em>The Communicators</em> far exceeded my expectations.</p>
<p>If I was mentoring someone on the topic of leadership, using <em>The Communicators</em> as a mentoring aid and only had time to discuss one section; that section would be…</p>
<p><span style="text-decoration:underline;">Section 9: Internal Leadership</span>. The concept of ‘servant leadership’ is not necessarily new. Levick writes “Servant leadership defines the supervisory missions in terms of helping subordinates succeed and achieve through appreciation and reinforcement, not intimidation” (206). Just imagine a company where this approach was really embedded into its culture – not just a talking point on a PowerPoint slide deck that is helping your co-worker catch up on sleep and drool on him or herself. Better yet – forget about the manager / subordinate or corporate training aspect &#8211; what if everyone applied the concept of “servant leadership” in some or all aspects of their lives? Imagine how much more different our relationships and quality of life could be.</p>
<p>Leadership is not just about you and something you do relative to others. It is a mindset that can be leveraged at various levels of abstraction (personal, social, professional…) for those willing to embrace it.</p>
<p>In summary, I really enjoyed <em>The Communicators</em> and highly recommend it to anyone in the information risk management profession or anyone else that is serious about managing their career – regardless of your role or title.</p>
<p>Bene valete ac me vobis prodesse spero (“I bid farewell and hope I may help you”)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/risktical.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/risktical.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/risktical.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=risktical.com&amp;blog=4314091&amp;post=348&amp;subd=risktical&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://risktical.com/2010/12/23/book-review-the-communicators-leadership-in-the-age-of-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">risktical</media:title>
		</media:content>

		<media:content url="http://risktical.files.wordpress.com/2010/12/thecomm_122310.jpg" medium="image">
			<media:title type="html">thecomm_122310</media:title>
		</media:content>
	</item>
	</channel>
</rss>
