<?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>Matt Churchill</title>
	<atom:link href="http://mattchurchill.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattchurchill.net</link>
	<description>Targeted Thoughts on Digital Forensics and  InfoSec</description>
	<lastBuildDate>Tue, 01 Jun 2010 20:59:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Turning RegRipper into WindowsRipper</title>
		<link>http://mattchurchill.net/2010/06/windowsripper/</link>
		<comments>http://mattchurchill.net/2010/06/windowsripper/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:59:06 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Forensics]]></category>
		<category><![CDATA[automated]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[regripper]]></category>
		<category><![CDATA[triage]]></category>
		<category><![CDATA[windowsripper]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=148</guid>
		<description><![CDATA[Harlan Carvey has given us a great tool in RegRipper and it&#8217;s undeniable that many examiners have found it to be a useful addition to their toolbox. RegRipper has a very specific purpose &#8211; parse the Windows registry. With some modification, we can turn RegRipper into WindowsRipper, an extremely powerful Windows triage tool. Using WindowsRipper we [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><span style="color: #000000;"><a href="http://windowsir.blogspot.com" target="_blank">Harlan Carvey</a></span><span style="color: #000000;"> has given us a great tool in <a href="http://regripper.net" target="_blank">RegRipper</a> and it&#8217;s undeniable that many examiners have found it to be a useful addition to their toolbox. RegRipper has a very specific purpose &#8211; parse the Windows registry. With some modification, we can turn RegRipper into WindowsRipper, an extremely powerful Windows triage tool. Using WindowsRipper we can parse much more than just the registry. Read on and watch the video to see just what WindowsRipper could become.</span></p>
<p style="text-align: left;"><span style="color: #000000;">Adam James, a coworker who did the coding for this project, and I took a look at RegRipper and decided it could be morphed nicely into an amazing triage tool. The first thing Adam did was </span><span style="color: #000000;"><a href="http://mattchurchill.net/2010/05/run-regripper-against-a-mounted-drive/" target="_blank">modify RegRipper to work against a mounted drive</a></span><span style="color: #000000;">. You can read his explanation in the previous post or simply know that his code allows RegRipper to look at a mounted drive, find the Windows installation folder and walk through all of the User profiles found on the drive parsing each NTUSER.dat file. The code was recently <a href="http://regripper.net/?page_id=150" target="_self">posted on the RegRipper.net</a> site.</span></p>
<p><span style="color: #000000;">Using this updated version of RegRipper, we can now ask it parse some other items within the Windows OS. As a proof of concept, we have RegRipper calling Harlan&#8217;s script for LNK file parsing, launching an external GUI program, and also executing a plugin that calls a command line function. This last item will let us launch any other program that has a CLI simply by running a RegRipper plugin.</span></p>
<p><span style="color: #000000;">RegRipper&#8217;s current architecture is laid out nicely for becoming a triage tool. When you run RegRipper, you can choose a &#8220;plugin&#8221; for each specific registry hive. Each plugin consists of numerous modules, which can be run on their own using rip.exe. For instance, looking inside the NTUSER.dat plugin, we see that it runs the following modules.</span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"># List of plugins for the Registry Ripper<br />
#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
# NTUSER.DAT<br />
logonusername<br />
acmru<br />
adoberdr<br />
aim<br />
applets<br />
fileexts<br />
comdlg32<br />
compdesc<br />
# The controlpanel plugin is intended for Vista systems only<br />
# User hives from systems prior to Vista will show &#8216;not found&#8217;<br />
controlpanel<br />
#listsoft<br />
#logon_xp_run<br />
mmc<br />
mndmru<br />
mp2<br />
mpmru<br />
mspaper<br />
officedocs<br />
recentdocs<br />
realplayer6<br />
runmru<br />
tsclient<br />
typedurls<br />
muicache<br />
userassist<br />
user_run<br />
vncviewer<br />
winzip<br />
user_win<br />
winrar<br />
wallpaper<br />
vista_bitbucket</span></p>
<p><span style="color: #000000;">Using this architecture, we can build a plugin that consists of modules for a specific purpose. For instance, in addition to incident response work we also receive HR cases that often involve inappropriate use (typically porn). We could build a plugin called &#8220;Inappropriate Internet Use&#8221; to call modules to parse parts of the registry, internet history, recent internet searches, and create thumbnail pages of the internet cache.  Many of these report items would be created by calling outside executables, bypassing the need for coding a custom module. The plugin would look something like this:</span></p>
<p style="padding-left: 30px;"><span style="color: #000000;"># List of plugins for WindowsRipper<br />
#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
# INAPPROPRIATE INTERNET USE<br />
logonusername<br />
recentdocs<br />
typedurls<br />
recentsearches (calling <a href="http://www.nirsoft.net/utils/my_last_search.html" target="_blank">Nirsoft&#8217;s MyLastSearch</a>)<br />
internethistory (calling <a href="http://www.jonesdykstra.com/index.php/home-mainmenu-1/81-tools" target="_blank">Pasco</a>)<br />
cachedthumbnails (calling <a href="http://www.fookes.com/ezthumbs/" target="_blank">Easy Thumbnails</a>)</span></p>
<p><span style="color: #000000;">Hopefully this example shows the potential that this type of a tool has. We&#8217;re even working on a timeline plugin.</span></p>
<p><span style="color: #000000;">With a strong community effort, WindowsRipper could grow based on a large library of custom modules. Users could create their own plugins based on these modules. Some modules could include <a href="http://www.cgsecurity.org/wiki/PhotoRec" target="_blank">PhotoRec</a> for file carving, MD5Sum for hashing, many of the </span><span style="color: #000000;"><a href="http://nirsoft.net" target="_blank">Nirsoft.net</a></span><span style="color: #000000;"> tools and a host of others. We can launch all of these against a mounted drive and compete with other triage programs such as </span><span style="color: #000000;"><a href="http://www.store.guardiandf.com/Drive-Prophet-Professional-Forensic-Edition-DP-PFE.htm" target="_blank">Drive Prophet</a></span><span style="color: #000000;">.</span></p>
<p><span style="color: #000000;">We recorded a short video of our WindowsRipper proof of concept in action. This video shows RegRipper parsing items other than registry and launching external programs from both the main executable and a custom plugin. View the <a href="http://mattchurchill.net/media-2/" target="_self">video here</a>.</span></p>
<p><span style="color: #000000;">What we have done is a rough mockup in just a few hours. The plugins and code we have written isn&#8217;t clean enough to be released yet &#8211; but it could be. Please let us know your thoughts on turning RegRipper into WindowsRipper. Good idea? Bad idea?</span></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/06/windowsripper/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Extending RegRipper</title>
		<link>http://mattchurchill.net/2010/06/media-windowsripper-video/</link>
		<comments>http://mattchurchill.net/2010/06/media-windowsripper-video/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:56:38 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[ForensicsMedia]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=154</guid>
		<description><![CDATA[This is an example video showcasing some changes to RegRipper. The changes extend the functionality turning RegRipper into a Windows triage tool. I was told the audio had a bit of an echo so I may try to re-record it. Video Link.]]></description>
			<content:encoded><![CDATA[<p>This is an example video showcasing some changes to RegRipper. The changes extend the functionality turning RegRipper into a Windows triage tool. I was told the audio had a bit of an echo so I may try to re-record it. <a href="http://www.youtube.com/watch?v=r4nBUXYGkBw" target="_blank">Video Link.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/06/media-windowsripper-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hard Drive Havoc</title>
		<link>http://mattchurchill.net/2010/05/hard-drive-havoc/</link>
		<comments>http://mattchurchill.net/2010/05/hard-drive-havoc/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:13:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[InterviewsMedia]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=149</guid>
		<description><![CDATA[I helped the local news look at some discarded hard drives to determine if there was any personal information on them. The bottom line is to make sure you securely erase your hard drive before you get rid of it.]]></description>
			<content:encoded><![CDATA[<p>I helped the local news look at some discarded hard drives to determine if there was any personal information on them. The bottom line is to make sure you securely erase your hard drive before you get rid of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/hard-drive-havoc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website</title>
		<link>http://mattchurchill.net/2010/05/new-website/</link>
		<comments>http://mattchurchill.net/2010/05/new-website/#comments</comments>
		<pubDate>Sun, 23 May 2010 15:34:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Forensics]]></category>
		<category><![CDATA[InfoSec]]></category>
		<category><![CDATA[Investigation]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[author]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=146</guid>
		<description><![CDATA[In the past I have been blogging over at Binary Intelligence, a joint blog shared with co-worker Jim O&#8217;Gorman. Both Jim and I have been busy with work and other projects and have somewhat outgrown the site. I wanted a place where it would be easier to post content that included videos, custom scripts and [...]]]></description>
			<content:encoded><![CDATA[<p>In the past I have been blogging over at <a href="http://binint.com" target="_blank">Binary Intelligence</a>, a joint blog shared with co-worker <a href="http://elwood.net">Jim O&#8217;Gorman</a>. Both Jim and I have been busy with work and other projects and have somewhat outgrown the site. I wanted a place where it would be easier to post content that included videos, custom scripts and code, and other downloadable items that didn&#8217;t work out so well on a site hosted by Blogger.</p>
<p>I&#8217;ve imported most of the content from Binary Intelligence over to here, but because of the way the import works every post lists me as the author. Keep in mind that anything written prior to this post (May 23rd) may have been written by Jim. Binary Intelligence will most likely be dormant, but may see a post every now and then.</p>
<p>Hopefully this new format works out as well I would like it to.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slider 1</title>
		<link>http://mattchurchill.net/2010/05/slider-new-website/</link>
		<comments>http://mattchurchill.net/2010/05/slider-new-website/#comments</comments>
		<pubDate>Thu, 20 May 2010 12:34:43 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=20</guid>
		<description><![CDATA[New Website This website recently went live and I am still filling in some content. I have a lot planned, so please bear with me while I work through the initial growing pains. Thanks for visiting!]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: center;"><strong>New Website</strong></h2>
<p><strong>This website recently went live and I am still filling in some content. I have a lot planned, so please bear with me while I work through the initial growing pains. Thanks for visiting!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/slider-new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slider 2</title>
		<link>http://mattchurchill.net/2010/05/slider-whats-in-the-box/</link>
		<comments>http://mattchurchill.net/2010/05/slider-whats-in-the-box/#comments</comments>
		<pubDate>Thu, 20 May 2010 12:00:36 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=22</guid>
		<description><![CDATA[What&#8217;s in the Box? I have planned a series of posts and screencasts based on both incident response and dead-box forensics. There are many triage techniques to discuss that I think many examiners will find useful. The first post should be up soon.]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: center;">What&#8217;s in the Box?</h2>
<p><strong>I have planned a series of posts and screencasts based on both incident response and dead-box forensics. There are many triage techniques to discuss that I think many examiners will find useful. The first post should be up soon.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/slider-whats-in-the-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slider 3</title>
		<link>http://mattchurchill.net/2010/05/slider-help/</link>
		<comments>http://mattchurchill.net/2010/05/slider-help/#comments</comments>
		<pubDate>Thu, 20 May 2010 11:47:38 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=25</guid>
		<description><![CDATA[Help Me! I plan on generating some content that I find interesting, but I&#8217;d like to know what others might find useful. If you have any comments or suggestions on how I can make this website better or have specific requests on information you&#8217;d like to see, please let me know in blog comments or [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: center;">Help Me!</h2>
<p><strong>I plan on generating some content that I find interesting, but I&#8217;d like to know what others might find useful. If you have any comments or suggestions on how I can make this website better or have specific requests on information you&#8217;d like to see, please let me know in blog comments or on the contact page. Thanks!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/slider-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Security</title>
		<link>http://mattchurchill.net/2010/05/media-placeholder/</link>
		<comments>http://mattchurchill.net/2010/05/media-placeholder/#comments</comments>
		<pubDate>Mon, 17 May 2010 15:54:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[InterviewsMedia]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=14</guid>
		<description><![CDATA[This is a story Jim and I helped the local news station with. It just highlights that people need to be conscious of the actions they take regarding social media.]]></description>
			<content:encoded><![CDATA[<p>This is a story Jim and I helped the local news station with. It just highlights that people need to be conscious of the actions they take regarding social media.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/media-placeholder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social-Engineer.org Podcast</title>
		<link>http://mattchurchill.net/2010/05/social-engineer-org-podcast/</link>
		<comments>http://mattchurchill.net/2010/05/social-engineer-org-podcast/#comments</comments>
		<pubDate>Sun, 16 May 2010 19:55:50 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[InterviewsMedia]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/?p=139</guid>
		<description><![CDATA[I was a guest on the Social-Engineer.org podcast about Interview and Interrogation Tactics. The guys there are great and I&#8217;ve contributed a couple other items as well. Check out their website and the podcast here, social-engineer.org.]]></description>
			<content:encoded><![CDATA[<p>I was a guest on the Social-Engineer.org podcast about Interview and Interrogation Tactics. The guys there are great and I&#8217;ve contributed a couple other items as well. Check out their website and the podcast here, <a href="http://www.social-engineer.org/framework/Podcast/001_-_Interrogation_and_Interview_Tactics" target="_blank">social-engineer.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/social-engineer-org-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Can Happen With Just an IP Address</title>
		<link>http://mattchurchill.net/2010/05/what-can-happen-with-just-an-ip-address/</link>
		<comments>http://mattchurchill.net/2010/05/what-can-happen-with-just-an-ip-address/#comments</comments>
		<pubDate>Fri, 14 May 2010 19:44:00 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[ip address]]></category>

		<guid isPermaLink="false">http://mattchurchill.net/2010/05/what-can-happen-with-just-an-ip-address/</guid>
		<description><![CDATA[After the Facebook post last week, much of the backlash consisted of, &#8220;Who cares if someone has my IP address? That information is almost always out there.&#8221; Well, here is a great example of what someone can do with an IP address. Here’s something to really think about.. I was able to obtain all of [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Tahoma, Verdana, Arial, sans-serif; color: #333333; font-size: 12px; line-height: 21px;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;">After the Facebook post last week, much of the backlash consisted of, &#8220;Who cares if someone has my IP address? That information is almost always out there.&#8221; Well, <a href="http://www.attackvector.org/?p=173">here is a great example</a> of what someone can do with an IP address.</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;"> </span></span></p>
<blockquote>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;">Here’s something to really think about.. I was able to obtain all of the information in this post for 16 cents and by just using an email and IP address from a piece of spam.</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;">Family members, ages, schools, anniversary dates, marriage lengths, hobbies, interests, phone numbers, addresses, property records, property taxes, pictures of their house, pictures of them, pictures of their children and grandchildren, deeds on their house, bankruptcies, employment history, previous addresses, previous creditors, and bits of social security numbers.</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;">I’m pretty sure I’d be able to fake my way through one of those password reset forms.. you know, where you set up a “secret question” asking what your dogs name was, or where you went to school?</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;">Beyond that, I’m fairly confident that at this point, if I were to call his bank and pretend to be him, I could easily pass when they asked me personal questions.</span></span></p>
</blockquote>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.8em; margin-left: 0px; font-weight: inherit; font-style: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><span style="font-family: arial;"><span style="font-size: medium;"> </span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchurchill.net/2010/05/what-can-happen-with-just-an-ip-address/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.535 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-19 12:57:48 -->

