<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>4nzx @ stonesifer.org</title>
	<link>http://stonesifer.org</link>
	<description>Computer Forensic Insights</description>
	<pubDate>Mon, 26 Mar 2012 17:45:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Log Parser</title>
		<link>http://stonesifer.org/2012/03/26/log-parser/</link>
		<comments>http://stonesifer.org/2012/03/26/log-parser/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 17:45:33 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Logs]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2012/03/26/log-parser/</guid>
		<description><![CDATA[Had an instance where Log2timeline would not work on .evtx files for what ever reason.  Decided to try Log Parser v2.2 and it works.  I had a bunch of .evtx files and wanted to parse them into one .xlsx file for easy sorting and searching.
I used the command line:
logparser -i:EVT -o:CSV "SELECT * FROM e:\directory\*.*" [...]]]></description>
			<content:encoded><![CDATA[<p>Had an instance where Log2timeline would not work on .evtx files for what ever reason.  Decided to try Log Parser v2.2 and it works.  I had a bunch of .evtx files and wanted to parse them into one .xlsx file for easy sorting and searching.</p>
<p>I used the command line:</p>
<p><code>logparser -i:EVT -o:CSV "SELECT * FROM e:\directory\*.*" &gt; c:\output.csv</code></p>
<p>Haven&#8217;t figured out how to recursively pass through multiple directories.</p>
<p>Ric</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2012/03/26/log-parser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating a Home Email Server</title>
		<link>http://stonesifer.org/2012/03/18/creating-a-home-email-server/</link>
		<comments>http://stonesifer.org/2012/03/18/creating-a-home-email-server/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 20:48:26 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2012/03/18/creating-a-home-email-server/</guid>
		<description><![CDATA[You might want to have your own email server because your paranoid, can&#8217;t stand the fact that free web email posts ads based on the contents of your email, or curiosity.  For what ever your reasons this is how I made mine.
Things you&#8217;ll need prior.

Purchase a domain of your choosing
Static home IP
Install Ubuntu 11.10 Server

DOMAIN
Within [...]]]></description>
			<content:encoded><![CDATA[<p>You might want to have your own email server because your paranoid, can&#8217;t stand the fact that free web email posts ads based on the contents of your email, or curiosity.  For what ever your reasons this is how I made mine.</p>
<p>Things you&#8217;ll need prior.</p>
<ol>
<li>Purchase a domain of your choosing</li>
<li>Static home IP</li>
<li>Install Ubuntu 11.10 Server</li>
</ol>
<p>DOMAIN</p>
<p>Within your domain host you should locate where you can make edits to the DNS.</p>
<p><img src="http://images.stonesifer.org/email/domain0.jpg" /></p>
<p>After locating this area we need to add a subdomain.</p>
<p><img src="http://images.stonesifer.org/email/domain1.jpg" /></p>
<p>The subdomain should be mail.<strong>example.com.</strong> Obviously select your domain name. <strong><br />
</strong></p>
<p><img src="http://images.stonesifer.org/email/domain2.jpg" /></p>
<p>Edit the mail.<strong>example.com</strong> subdomain DNS.</p>
<p><img src="http://images.stonesifer.org/email/domain3.jpg" /></p>
<p>Make the DNS A record point to the static IP of you email server.  Make the MX (mail exchange) record point to mail.<strong>example.com</strong> with a value of 10.</p>
<p><img src="http://images.stonesifer.org/email/domain4.jpg" /></p>
<p>This could take some time to populate throughout their servers.</p>
<p>INSTALL UBUNTU SERVER</p>
<p>For the most part the install of Ubuntu Server was default and selecting the packages differed.  I only installed OpenSSH and LAMP.</p>
<p>If you install the mail server it uses dovecot and I perfer courier.</p>
<p>After installing ubuntu server I then installed ubuntu-dekstop:</p>
<pre>sudo apt-get install -y ubuntu-desktop</pre>
<p>Its much easier to install the configuration files and follow along in the GUI.</p>
<p>After installing the ubuntu-desktop reboot and follow this walk through:  <a href="http://www.pixelinx.com/2010/10/creating-a-mail-server-on-ubuntu-using-postfix-courier-ssltls-spamassassin-clamav-and-amavis" target="_blank">http://www.pixelinx.com/2010/10/creating-a-mail-server-on-ubuntu-using-postfix-courier-ssltls-spamassassin-clamav-and-amavis</a></p>
<p>***TYPO*** When you get to 15-content-filter-mode its actually 15-content_filter_mode</p>
<p>After your completed there are some additional changes and additions to be made.</p>
<p>I added to the following lines to /etc/postfix/main.cf.</p>
<p>Locate the relayhost.  The reason for this is to use an existing email account on your domain to send email out.</p>
<pre>relayhost = [smtp.1and1.com]:587</pre>
<p>Locate the #Encrypted authentication (SASL) and add the following:</p>
<pre>smtp_sasl_auth_enable = yes</pre>
<pre>smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd</pre>
<pre>smtp_sasl_security_options = noanonymous</pre>
<pre>smtp_sasl_tls_security_options = noanonymous</pre>
<p>Save /etc/postfix/main.cf</p>
<p>We need to add the relayhost login and password so that we can send mail through a SMTP server.  The reason for using a host is that often home email servers get placed on an email blacklist and your email are lost.  Its the host problem to ensure there email server dont end up on those lists.  Change to your domain and port.  The email address is normally used to authenticate through the relay.  This email address and password can be set up through your domain.<br />
<code></code></p>
<p><code>echo [<strong>smtp.1and1.com</strong>]:587 mail@example.com:password&#8221; &gt; /etc/postfix/sasl_passwd</code></p>
<p><code>postmap /etc/postfix/sasl_passwd</code></p>
<p>After this I added an additional user to the mysql database mail.</p>
<p>Login to MySQL.</p>
<p><code>mysql -u root -p</code><br />
<code>USE mail;</code><br />
<code>INSERT INTO `user` (`email`, `password`, `name`, `quota`, `enabled`) VALUES ('<strong>USER</strong>@<strong>example.com</strong>&#8216;, ENCRYPT(&#8217;<strong>changeme</strong>&#8216;), &#8216;<strong>Administrator</strong>&#8216;, NULL, 1);</code><br />
<code>exit;</code></p>
<p>Send this USER email from another source.  This will populate the folders required to login.</p>
<p>INSTALL SQUIRRELMAIL</p>
<p><code>apt-get install -y squirrelmail squirrelmail-locales php-pear php5-cli</code></p>
<p>SETUP APACHE</p>
<p><code>cp /etc/squirrelmail/apache.conf /etc/apache2/sites-available/squirrelmail</code><br />
<code>ln -s /etc/apache2/sites-available/squirrelmail /etc/apache2/sites-enabled/500-squirrelmail</code><br />
<code>a2ensite squirrelmail</code><br />
<code>apache2ctl -t</code><br />
<code>/etc/init.d/amavis start</code></p>
<p>SETUP SSL FOR APACHE (<a href="http://www.tc.umn.edu/~brams006/selfsign.html" target="_blank">http://www.tc.umn.edu/~brams006/selfsign.html</a>) and (<a href="http://www.tc.umn.edu/~brams006/selfsign_ubuntu.html" target="_blank">http://www.tc.umn.edu/~brams006/selfsign_ubuntu.html</a>)</p>
<p><code>openssl genrsa -des3 -out /etc/ssl/server.key 4096</code><br />
<code>openssl req -new -key /etc/ssl/server.key -out /etc/ssl/server.csr</code><br />
<code>openssl x509 -req -days 3650 -in /etc/ssl/server.csr -signkey /etc/ssl/server.key -out /etc/ssl/server.crt</code><br />
<code>openssl rsa -in /etc/ssl/server.key -out /etc/ssl/server.key.insecure</code><br />
<code>mv /etc/ssl/server.key /etc/ssl/server.key.secure</code><br />
<code>mv /etc/ssl/server.key.insecure /etc/ssl/server.key</code><br />
<code>mkdir /etc/apache2/ssl</code><br />
<code>cp /etc/ssl/server.key /etc/apache2/ssl</code><br />
<code>cp /etc/ssl/server.crt /etc/apache2/ssl</code><br />
<code>a2enmod ssl</code><br />
<code>ln -s /etc/apache2/sites-available/default-ssl /etc/apache2/sites-enabled/000-default-ssl</code><br />
<code>echo "ServerName localhost" &gt;&gt; /etc/apache2/apache2.conf</code><br />
<code>/etc/init.d/apache2 restart</code></p>
<p>EDIT HOSTS</p>
<p><code>nano /etc/host</code></p>
<p><code>127.0.0.1    localhost localhost.localdomain mail<br />
127.0.1.1    mail<br />
<strong>173.72.XXX.XXX</strong>    mail.<strong>example.com</strong></code></p>
<p>SQUIRRELMAIL</p>
<p><code>cd /usr/share/squirrelmail/plugins/</code><br />
<code>wget "http://www.squirrelmail.org/plugins/secure_login-1.4-1.2.8.tar.gz"</code><br />
<code>tar xzvf secure_login-1.4-1.2.8.tar.gz</code><br />
<code>cd secure_login/</code><br />
<code>cp config.sample.php config.php</code><br />
<code>nano config.php</code><br />
<strong>modify;</strong> <code>$change_back_to_http_after_login = 1;</code><br />
<strong>to;</strong> <code>$change_back_to_http_after_login = 0;</code></p>
<p>EDIT SQUIRRELMAIL</p>
<p><code>squirrelmail-configure</code><br />
<code>D</code><br />
<code>courier</code><br />
<code>8</code><br />
Locate secure_login and enter the number to enable.<br />
<code>S</code><br />
<code>Q</code></p>
<p>APACHE EDITS (<a href="https://help.ubuntu.com/community/EnablingUseOfApacheHtaccessFiles" target="_blank">https://help.ubuntu.com/community/EnablingUseOfApacheHtaccessFiles</a>)</p>
<p><code>nano /vetc/apache2/sites-available/default</code></p>
<p>Find;</p>
<p><code>&lt;Directory /var/www/&gt;<br />
Options Indexes FollowSymLinks MultiViews<br />
AllowOverride None</code></p>
<p>Modify;</p>
<p><code>AllowOverride All</code></p>
<p>Same for:</p>
<p><code>nano /vetc/apache2/sites-available/default-ssl</code></p>
<p><code>cd /var/www</code></p>
<p><code>nano .htaccess</code></p>
<p>ADD:</p>
<p><code># This allows you to redirect index.html to a specific subfolder<br />
Redirect /index.html https://mail.example.com/squirrelmail/</code></p>
<p>Try logging into your email server:</p>
<p>http://mail.example.com</p>
<p>You should see the cert error and must accept the cert.</p>
<p>After that you should be able to login.</p>
<p>Might be able to add some additional configuration from here. <a href="http://flurdy.com/docs/postfix/" target="_blank">http://flurdy.com/docs/postfix/</a></p>
<p>UPDATE 120319;</p>
<p>Recenting added the change_sqlpass plugin and that took and little figuring out.  The screen will go blank and forces you to re-login with new password.</p>
<p>The config.php should have the following settings:</p>
<p><code>$csp_dsn = 'mysql://root:<strong>password</strong>@localhost/mail&#8217;;<br />
$lookup_password_query = &#8216;SELECT count(*) FROM user WHERE email = &#8220;%1&#8243; AND password = %4&#8242;;<br />
$password_update_queries = array(&#8217;UPDATE user SET password = %4 WHERE email = &#8220;%1&#8243;&#8216;);<br />
$force_change_password_check_query = &#8221;;<br />
$password_encryption = &#8216;MYSQLENCRYPT&#8217;;<br />
$csp_salt_static = &#8216;LEFT(password, 2)&#8217;;<br />
$csp_secure_port = 0;<br />
$csp_non_standard_http_port = 0;<br />
$min_password_length = 8;<br />
$max_password_length = 0;<br />
$include_digit_in_password = 1;<br />
$include_uppercase_letter_in_password = 1;<br />
$include_lowercase_letter_in_password = 1;<br />
$include_nonalphanumeric_in_password = 0;<br />
$csp_delimiter = &#8216;@&#8217;;<br />
$csp_debug = 0;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2012/03/18/creating-a-home-email-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with WinFE</title>
		<link>http://stonesifer.org/2011/12/27/working-with-winfe/</link>
		<comments>http://stonesifer.org/2011/12/27/working-with-winfe/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 18:41:44 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Imaging]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/12/27/working-with-winfe/</guid>
		<description><![CDATA[This is a continuation from Editing Existing WinFE.
***ENSURE BIOS BOOTS FROM CD/DVD***
1.  Attached a storage device to a target system that will be used to store your forensic image.
2.  I attached a 100GB hard drive to take a 60GB operating system hard drive.
3. Set the bios to boot from cd/dvd.
4. Started winFE. Since we told [...]]]></description>
			<content:encoded><![CDATA[<p>This is a continuation from Editing Existing WinFE.</p>
<p>***ENSURE BIOS BOOTS FROM CD/DVD***</p>
<p>1.  Attached a storage device to a target system that will be used to store your forensic image.</p>
<p>2.  I attached a 100GB hard drive to take a 60GB operating system hard drive.</p>
<p>3. Set the bios to boot from cd/dvd.</p>
<p>4. Started winFE. Since we told diskpart_steps.txt to load automatically it should have opened up.</p>
<p><img src="http://images.stonesifer.org/winFE2/Windows%207-2011-12-27-12-51-35_.png" /></p>
<p>5. Move the windows out of the way so that you can still see the command behind the command prompt.</p>
<p><img src="http://images.stonesifer.org/winFE2/Windows%207-2011-12-27-12-56-17_.png" /></p>
<p>6. Issue commands listed in the document.  We are locking the target device down to readonly.</p>
<p>diskpart</p>
<p>list disk</p>
<p>list vol</p>
<p><img src="http://images.stonesifer.org/winFE3/7.jpg" /></p>
<p>7.  The target volume on my system is Volume 1 &amp; 2.  Volume 1 is the System Reserve partition from Win7. Volume 2 is the OS partition.</p>
<p>8.  Time to make your storage drive active.list disk</p>
<p>sel disk 1</p>
<p>list disk</p>
<p><img src="http://images.stonesifer.org/winFE3/13.jpg" /></p>
<p>9. If your storage drive is already formatted than you should see a partition.</p>
<p>det disk</p>
<p><img src="http://images.stonesifer.org/winFE3/14.jpg" /></p>
<p>10. Ensure the storage disk is selected. Select the partition. Set it online and assign a drive letter.</p>
<p>sel disk 1</p>
<p>sel part 1</p>
<p>onl vol</p>
<p>assign letter z</p>
<p><img src="http://images.stonesifer.org/winFE3/15.jpg" /></p>
<p>11.  Should see your evidence drive.</p>
<p>list vol</p>
<p><img src="http://images.stonesifer.org/winFE3/16.jpg" /></p>
<p>12. Minimize the notepad++ window.</p>
<p><img src="http://images.stonesifer.org/winFE3/Windows%207-2011-12-27-13-23-52.png" /></p>
<p>13. Select Forensic folder on PStart and start FTK Imager.</p>
<p><img src="http://images.stonesifer.org/winFE3/Windows%207-2011-12-27-13-26-01.png" /></p>
<p>14. Should be able to image the device from here if your familiar with FTK Imager.</p>
<p>15. Additional programs to consider installing on winFE.  Its your winFE and justify what you need.  ***THE MORE YOU ADD IN MY EXPERIENCE THE LONGER IT TAKES TO BOOT***Explorer++Portable</p>
<p>WinRAR Portable</p>
<p>IrfanView Portable</p>
<p>VLC Portable</p>
<p>Mozilla Firefox Portable</p>
<p>Filezilla Portable</p>
<p>Putty Portable</p>
<p>OpenOffice Portable</p>
<p>SumatraPDF Portable</p>
<p>GOOD LUCK.</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/12/27/working-with-winfe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Editing Existing WinFE</title>
		<link>http://stonesifer.org/2011/12/27/editing-existing-winfe/</link>
		<comments>http://stonesifer.org/2011/12/27/editing-existing-winfe/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 15:35:44 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Imaging]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/12/27/editing-existing-winfe/</guid>
		<description><![CDATA[Continuation from the Creating WinFE Boot Disc
***WHILE TESTING ENSURE BIOS IS SET TO BOOT CD/DVD***
***ON REAL TARGETED SYSTEMS IT IS A GOOD PRACTICE TO DISCONNECT THE HARD DRIVE BEFORE CHANGING THE BIOS***
1.  Edit the existing image.
Dism /Mount-Wim /WimFile:c:\winFE\winpe.wim /index:1 /MountDir:c:\winFE\mount

2. Should be able to see the mounted image here.  Minus the PStart menu&#8230;we&#8217;ll get to [...]]]></description>
			<content:encoded><![CDATA[<p>Continuation from the Creating WinFE Boot Disc</p>
<p>***WHILE TESTING ENSURE BIOS IS SET TO BOOT CD/DVD***</p>
<p>***ON REAL TARGETED SYSTEMS IT IS A GOOD PRACTICE TO DISCONNECT THE HARD DRIVE BEFORE CHANGING THE BIOS***</p>
<p>1.  Edit the existing image.</p>
<p>Dism /Mount-Wim /WimFile:c:\winFE\winpe.wim /index:1 /MountDir:c:\winFE\mount</p>
<p><img src="http://images.stonesifer.org/winFE2/1..jpg" /></p>
<p>2. Should be able to see the mounted image here.  Minus the PStart menu&#8230;we&#8217;ll get to that later.</p>
<p><img src="http://images.stonesifer.org/winFE2/2.jpg" /></p>
<p>3.  I would recommend creating a <a href="http://stonesifer.org/__oneclick_uploads/2011/12/diskpart_steps.txt" title="text document">text document</a> that runs through the diskpart commands prior to mucking around with the target system.  This step by step process will aid in preparing the storage drive as writable.  If you remember prior we told WinFE through registry entries NoAutoMount.  The SetPolicy change I suspect is for ensuring all drives are offline.  We will get that to auto load when the disc is booted.  First things first.</p>
<p>4. Lets get the menu system up and running.  Download <a href="http://www.pegtop.de/download.php?file=start" target="_blank">PStart</a>.</p>
<p>5. I had a spare 2GB SD lying around and decided to use that and install PStart to.  Reasoning was my attempt at keeping things in order.  No other purpose other than that.</p>
<p>6. The winFE disc when booted will be &#8220;X:\&#8221; so we will have to make sure when we install the programs we give it the right drive letter to run from.</p>
<p>7. I installed PStart to my 2GB SD device.  If you have a thumb drive that is fine too or use your OS c:\.  Additionally if you don&#8217;t have any issues with permissions you could just install right to c:\winFE\mount\ -or- c:\winFE\mount\program files -or- c:\winFE\mount\</p>
<p>8. I decided to change the drive letter of my 2GB SD to &#8220;x:\&#8221; just like the winFE disk.  This can be done under computer management.</p>
<p><a href="http://images.stonesifer.org/winFE2/8.jpg" target="_blank"><img src="http://images.stonesifer.org/winFE2/8_.jpg" /></a></p>
<p>9. There should be two files in the directory.</p>
<p><img src="http://images.stonesifer.org/winFE2/9.jpg" /></p>
<p>10. Lets download <a href="http://portableapps.com/apps/development/notepadpp_portable" target="_blank">Notepad++ portable</a> and install to get it working in our winFE and PStart.</p>
<p>11. Install notepad++ and copy the contents to the winFE tools area.  Optional would be the install to the \program files area.</p>
<p><img src="http://images.stonesifer.org/winFE2/11.jpg" /></p>
<p>12. Start PStart by executing the .exe file.  The window will appear but of course your menu screen will be blank.  Right click in the blank area and select <strong>add group&#8230;</strong></p>
<p><img src="http://images.stonesifer.org/winFE2/12.jpg" /></p>
<p>13.  Call it Office or whatever.</p>
<p>14.  Right click on the Office folder and select <strong>Add file&#8230;</strong></p>
<p>15. Locate  Notepad++Portable.exe under c:\winFE\mount\tools\Notepad++Portable or where ever you installed it on the mounted winFE image and select open.  ***NOTE THE MORE STUFF YOU ADD THE LONGER IT WILL TAKE TO BOOT***</p>
<p><img src="http://images.stonesifer.org/winFE2/15.jpg" /></p>
<p>16.  Change the application path to x:\&lt;where ever its installed in the winFE directory structure&gt; &#8211;&gt; OK</p>
<p>The icon shouldn&#8217;t appear because x:\ doesnt exist yet until winFE is run.  Sometime a folder icon doesn&#8217;t appear also and that can be downloaded as well and added later.</p>
<p><img src="http://images.stonesifer.org/winFE2/16.jpg" /></p>
<p>17. This step can be repeated to add additional programs. If the purpose for winFE is to take forensic images it would be good to install <a href="http://accessdata.force.com/RegisterForDownload?redirectName=000055" target="_blank">FTK Imager</a> to the winFE tools area.  Remember to copy c:\windows\system32\oledlg.dll to c:\winFE\mount\windows\system32\ (Props to <a href="http://www.forensicfocus.com/downloads/WinFE.pdf" target="_blank">Brett Shavers</a>)</p>
<p>18. Let make PStart automatic and diskpart_steps.txt file in number 3 open automatically using Notepad++ when winFE starts.</p>
<p>19. Locate the file c:\winFE\mount\windows\system32\startnet.cmd</p>
<p>20. Edit the file with notepad or like program.  Add the following lines:</p>
<p>wpeinit<br />
@echo off<br />
start x:\PStart\PStart.exe<br />
start x:\tools\Notepad++Portable\Notepad++Portable.exe x:\tools\diskpart_steps.txt</p>
<p>21. &#8220;@echo off&#8221; doesn&#8217;t show the preceding commands on screen.</p>
<p>22. &#8220;start x:\PStart\Pstart.exe&#8221; will execute the program to run and move on to the next command.  Make should you PStart location is correct under c:\winFE\mount.</p>
<p>23. &#8220;start x:\tools\Notepad++Portable\Notepad++Portable.exe x:\tools\diskpart_steps.txt&#8221; will execute notepad++ and load x:\tools\diskpart_steps.txt inside.</p>
<p>24. Many automated other programs maybe run from this locations</p>
<p>25. If you&#8217;ve finished adding additional programs lets complete the image.  Make sure you exit out of any programs that are accessing c:\winFE.</p>
<p>dism /unmount-wim /mountdir:c:\winFE\mount /commit</p>
<p><img src="http://images.stonesifer.org/winFE2/25.jpg" /></p>
<p>26. Copy the boot image over.</p>
<p>copy c:\winfe\winpe.wim c:\winfe\iso\sources\boot.wim /Y</p>
<p><img src="http://images.stonesifer.org/winFE2/26.jpg" /></p>
<p>27. I had an issue where oscdimg.exe could not be located.  I case you come across this also its found under \program files\windows aik\tools\x86</p>
<p>oscdimg -n -bc:\winFE\etfsboot.com c:\winFE\ISO c:\winFE\winFE.iso</p>
<p><img src="http://images.stonesifer.org/winFE2/27.jpg" /></p>
<p>Received an error because the image exceeds the allowable space for a CD but not DVD.  Change the command to:</p>
<p>***NOTE <strong>XX</strong> increment your .iso files created.***</p>
<p>oscdimg -m -n -bc:\winFE\etfsboot.com c:\winFE\ISO c:\winFE\winFE<strong>XX</strong>.iso</p>
<p><img src="http://images.stonesifer.org/winFE2/28.jpg" /></p>
<p>28. Boot using VMware etc or burn to DVD for testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/12/27/editing-existing-winfe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating WinFE Boot Disc</title>
		<link>http://stonesifer.org/2011/12/20/creating-winfe-boot-disc/</link>
		<comments>http://stonesifer.org/2011/12/20/creating-winfe-boot-disc/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 19:26:12 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Imaging]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/12/20/creating-winfe-boot-disc/</guid>
		<description><![CDATA[Creating a forensic bootable environment to run tools on a target system using WinPE.
1. Download Windows AIK iso.  This file will aid in providing necessary files to create the winFE.
2. Mount Windows AIK file KB3AIK_EN.iso.
a. Use a .iso mounter like Virtual Clone drive. After installing right-click on the icon.

b.  Mount the downloaded KB3AIK_EN.iso file.

3. Open [...]]]></description>
			<content:encoded><![CDATA[<p>Creating a forensic bootable environment to run tools on a target system using WinPE.</p>
<p>1. Download <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=5753" target="_blank">Windows AIK</a> iso.  This file will aid in providing necessary files to create the winFE.</p>
<p>2. Mount Windows AIK file KB3AIK_EN.iso.</p>
<blockquote><p>a. Use a .iso mounter like <a href="http://www.slysoft.com/en/virtual-clonedrive.html" target="_blank">Virtual Clone</a> drive. After installing right-click on the icon.</p></blockquote>
<p><img src="http://images.stonesifer.org/winFE/2a.jpg" /></p>
<blockquote><p>b.  Mount the downloaded KB3AIK_EN.iso file.</p></blockquote>
<p><img src="http://images.stonesifer.org/winFE/2b.jpg" /></p>
<p>3. Open the contents, locate StartCD.exe and execute.</p>
<p><img src="http://images.stonesifer.org/winFE/3.jpg" /></p>
<p>4. Install Windows AIK Setup.</p>
<p><img src="http://images.stonesifer.org/winFE/4.jpg" /></p>
<p>5. Default installation path.</p>
<p><img src="http://images.stonesifer.org/winFE/5.jpg" /></p>
<p>6. Open Administrator command prompt.  Right click command prompt and run as administrator.</p>
<p><img src="http://images.stonesifer.org/winFE/6.jpg" /></p>
<p>7. Change directory in the PRTools area.</p>
<p>cd &#8220;c:\Program Files\Windows AIK\Tools\PETools&#8221;</p>
<p><img src="http://images.stonesifer.org/winFE/7.jpg" /></p>
<p>8. Copy the necessary files to your winFE creation area.</p>
<p>copype x86 c:\winFE</p>
<p><img src="http://images.stonesifer.org/winFE/8.jpg" /></p>
<p>9. Mount the bootable area.</p>
<p>Dism /Mount-Wim /WimFile:c:\winFE\winpe.wim /index:1 /MountDir:c:\winFE\mount</p>
<p><img src="http://images.stonesifer.org/winFE/9.jpg" /></p>
<p>10. Should see the mount area is populated.</p>
<p><img src="http://images.stonesifer.org/winFE/10.jpg" /></p>
<p>11. Time to mod the registry so that the disc will not automount onboard drives.  Open regedit.  Start &#8211;&gt; regedit.exe &#8211;&gt; &lt;enter&gt;.</p>
<p><img src="http://images.stonesifer.org/winFE/11.jpg" height="55" width="410" /></p>
<p>12.  Highlight HKLM</p>
<p><img src="http://images.stonesifer.org/winFE/12.jpg" /></p>
<p>13. Select File &#8211;&gt; Load Hive &#8230;</p>
<p><img src="http://images.stonesifer.org/winFE/13.jpg" /></p>
<p>14.  Locate c:\winFE\mount\Windows\System32\config\system &#8211;&gt; Open</p>
<p><img src="http://images.stonesifer.org/winFE/_14.jpg" /></p>
<p>15.  Name it &#8220;winFE&#8221;</p>
<p><img src="http://images.stonesifer.org/winFE/015.jpg" /><br />
16. Under HKLM should be winFE</p>
<p><img src="http://images.stonesifer.org/winFE/016.jpg" /></p>
<p>17. Locate the following key HKLM\winFE\ControlSet001\Services\mountmgr &#8211;&gt; Right click right panel and select New &#8211;&gt; DWORD.</p>
<p><img src="http://images.stonesifer.org/winFE/017.jpg" /></p>
<p>18. Name it NoAutoMount = 1</p>
<p><img src="http://images.stonesifer.org/winFE/018.jpg" /></p>
<p>19.  Modify HKLM\winFE\ControlSet001\Services\partmgr\parameters\sanpolicy = 3</p>
<p><img src="http://images.stonesifer.org/winFE/019.jpg" /></p>
<p>20. Highlight winFE</p>
<p><img src="http://images.stonesifer.org/winFE/020.jpg" /></p>
<p>21. Select File &#8211;&gt; Unload Hive&#8230;  Confirm  Close</p>
<p><img src="http://images.stonesifer.org/winFE/_021.jpg" /></p>
<p>22. Modify the wallpaper if you like.  Name the BMP winpe.bmp and overwrite existing under c:\winFE\mount\Windows\System32</p>
<p><img src="http://images.stonesifer.org/winFE/022.jpg" /></p>
<p>23. Add directory tools under c:\winFE\mount\</p>
<p><img src="http://images.stonesifer.org/winFE/023.jpg" /></p>
<p>24. Drop tools like <a href="http://regripper.wordpress.com/" target="_blank">RegRipper</a>, <a href="http://sourceforge.net/projects/cygwinportable/" target="_blank">Cygwin</a>, <a href="http://accessdata.com/support/adownloads#FTKImager" target="_blank">FTK Imager Lite</a>, <a href="http://joncraton.org/files/nc111nt.zip" target="_blank">NetCat</a>, <a href="http://www.win-rar.com/unpluggedinfo.html" target="_blank">Winrar unplugged</a>, <a href="http://portableapps.com/apps/graphics_pictures/irfanview_portable" target="_blank">IrfanView</a>, etc in this location.</p>
<p><img src="http://images.stonesifer.org/winFE/024.jpg" /></p>
<p>25. Add VBS scripting capability:</p>
<p>dism.exe /image:c:\winFE\mount /add-package /packagepath:&#8221;c:\Program Files\Windows AIK\Tools\PETools\x86\winpe_fps\winpe-wmi.cab&#8221;</p>
<p><img src="http://images.stonesifer.org/winFE/025.jpg" /></p>
<p>26. (Hint use the arrow up key in the keyboard and change <strong>wmi</strong> to <strong>hta</strong>) Add HTA:</p>
<p>dism.exe /image:c:\winFE\mount /add-package /packagepath:&#8221;c:\Program  Files\Windows AIK\Tools\PETools\x86\winpe_fps\winpe-<strong>hta</strong>.cab&#8221;</p>
<p><img src="http://images.stonesifer.org/winFE/026.jpg" /></p>
<p>27. Add scripting:</p>
<p>dism.exe /image:c:\winFE\mount /add-package /packagepath:&#8221;c:\Program  Files\Windows AIK\Tools\PETools\x86\winpe_fps\winpe-<strong>scripting</strong>.cab&#8221;</p>
<p><img src="http://images.stonesifer.org/winFE/027.jpg" /></p>
<p>28. Add .vbs scripts (props: <a href="http://praetorianprefect.com/archives/2010/04/winpe-3-0-forensics/" target="_blank">http://praetorianprefect.com/archives/2010/04/winpe-3-0-forensics/</a>) under tools.</p>
<p>29. Add <a href="http://driverpacks.net/downloads" target="_blank">driver packs</a> that way what ever system you come across should boot and see the onboard drives without issue. I extracted them to my c:\</p>
<p>dism.exe /image:c:\winFE\mount /add-driver /driver:c:\DP_MassStorage_wnt6-x86_1110 /recurse</p>
<p><img src="http://images.stonesifer.org/winFE/029.jpg" /></p>
<p>30.  I ran the following driver packs.</p>
<blockquote><p>a. DP_CardReaders_wnt6-x86_11041</p>
<p>b. DP_Chipset_wnt6-x86_11051</p>
<p>c.  DP_LAN_wnt6-x86_1109</p>
<p>d.  DP_MassStorage_wnt6-x86_1110</p>
<p>e. DP_WLAN_wnt6-x86_1104</p></blockquote>
<p>31. Closing the image.  ***Make sure you close all related windows linked to c:\winFE***  If you dont the image will not close properly.</p>
<p>32. Make sure your not in the command prompt c:\winFE area when you issue the command.</p>
<p>cd c:\</p>
<p>dism /unmount-wim /mountdir:c:\winFE\mount /commit</p>
<p><img src="http://images.stonesifer.org/winFE/032.jpg" /></p>
<p>33.  Should get a successful completion.</p>
<p><img src="http://images.stonesifer.org/winFE/033.jpg" /></p>
<p>34.  Copy file</p>
<p>copy c:\winfe\winpe.wim c:\winfe\iso\sources\boot.wim /Y</p>
<p><img src="http://images.stonesifer.org/winFE/034.jpg" /></p>
<p>35. Remove bootfix.bin so that you are not prompted to hit any key to boot from disc.  This would be bad if we forgot and booted the operating system.</p>
<p>del /f /q c:\winFE\ISO\boot\bootfix.bin</p>
<p><img src="http://images.stonesifer.org/winFE/035.jpg" /></p>
<p>36. Create ISO</p>
<p>oscdimg -n -bc:\winFE\etfsboot.com c:\winFE\ISO c:\winFE\winFE.iso</p>
<p><img src="http://images.stonesifer.org/winFE/036.jpg" /></p>
<p>37. Should have your .iso file here:</p>
<p><img src="http://images.stonesifer.org/winFE/037.jpg" /></p>
<p>38. Dont forget to test it out&#8230;through vmware or live test system before using it within production.</p>
<p>39. To add additional tools, drivers, scripts etc start at step 9 and follow until creating the .iso.</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/12/20/creating-winfe-boot-disc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bitlocker Decryption with Known Key without Admin Privileges</title>
		<link>http://stonesifer.org/2011/12/06/bitlocker-decryption-with-known-key/</link>
		<comments>http://stonesifer.org/2011/12/06/bitlocker-decryption-with-known-key/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:16:36 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Bitlocker]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/12/06/bitlocker-decryption-with-known-key/</guid>
		<description><![CDATA[Situation:
1. Needed to boot an encrypted hard disk drive (HDD) into VMware and collect volatile information from the running system.
2. Did not have admin privileges to remove bitlocker. (Couldn&#8217;t get either, Army regulations and all.)
3. HDD was encrypted with bitlocker.
4. Was able to obtain the bitlocker key though.
Software Required:
VMware Workstation

Liveview
Operating system installation disk
Work Around:
1. HDD [...]]]></description>
			<content:encoded><![CDATA[<p>Situation:</p>
<p>1. Needed to boot an encrypted hard disk drive (HDD) into VMware and collect volatile information from the running system.<br />
2. Did not have admin privileges to remove bitlocker. (Couldn&#8217;t get either, Army regulations and all.)<br />
3. HDD was encrypted with bitlocker.<br />
4. Was able to obtain the bitlocker key though.</p>
<p>Software Required:</p>
<p><a href="http://www.vmware.com/products/workstation/" target="_blank">VMware Workstation<br />
</a></p>
<p><a href="http://liveview.sourceforge.net/" target="_blank">Liveview</a></p>
<p>Operating system installation disk</p>
<p>Work Around:</p>
<p>1. HDD was in an evidence file format called disk dump (dd).  Flat file which was an exact copy of the original HDD bitlocker and all.</p>
<p><img src="http://images.stonesifer.org/bitlocker/1.jpg" title="DD File" alt="DD File" height="25" width="513" /></p>
<p>2.  Start liveview.</p>
<p><img src="http://images.stonesifer.org/bitlocker/2.jpg" title="LiveView" alt="LiveView" height="92" width="63" /></p>
<p>3. Liveview opened.  If your using the non-law enforcement version you will be missing the ability to blank out the passwords.  The operating system I&#8217;m looking at was Vista Enterprise. Pointed liveview at the image file.  Redirected the configuration files out to the drive and generate the config files.  Select Start.</p>
<p><img src="http://images.stonesifer.org/bitlocker/3.jpg" height="611" width="395" /></p>
<p>4. Config files should have been generated.</p>
<p><img src="http://images.stonesifer.org/bitlocker/4.jpg" /></p>
<p>5. Double click on the .vmx file.  This should open VMware config editor.  Select edit virtual machine settings.</p>
<p><a href="http://images.stonesifer.org/bitlocker/5.jpg" target="_blank"><img src="http://images.stonesifer.org/bitlocker/5_1.jpg" /></a></p>
<p>6.  Settings windows should appear.</p>
<p><img src="http://images.stonesifer.org/bitlocker/6.jpg" /></p>
<p>7. If your going to sniff the network traffic might want to add a network device as host only.</p>
<p><img src="http://images.stonesifer.org/bitlocker/7.jpg" /></p>
<p>8.  Install the operating system installation CD or .iso file within the CD/DVD.  Add a new CD/DVD and place the <a href="http://stonesifer.org/__oneclick_uploads/2011/12/bitlocker_recovery_tools_vistax86_iso.zip" title="bitlocker_recovery_tools_vistax86.iso">bitlocker_recovery_tools_vistax86.iso</a> within the device.  The files contained are used to decrypt the drive.</p>
<p>Additionally add a new virtual HDD that is greater than the size of the operating system HDD.</p>
<p><img src="http://images.stonesifer.org/bitlocker/8.jpg" /></p>
<p>Ensure the bitlocker HDD is 0:0.  New HDD is 0:1. Operating System DVD is 1:0. Bitlocker tools CD is 1:1 within advance settings.</p>
<p><img src="http://images.stonesifer.org/bitlocker/8_1.jpg" /></p>
<p>9. Should look similar to this.</p>
<p><img src="http://images.stonesifer.org/bitlocker/9.jpg" /></p>
<p>10. Boot into the BIOS.  Boot from CD.</p>
<p><img src="http://images.stonesifer.org/bitlocker/10.jpg" /></p>
<p>11. Boot from DVD.  Press any key before the time out.</p>
<p><img src="http://images.stonesifer.org/bitlocker/11.jpg" /></p>
<p>12. Select next to arrive at the &#8220;Repair  your computer&#8221; and select.</p>
<p><img src="http://images.stonesifer.org/bitlocker/12.jpg" /></p>
<p>13.  Manual input the bitlocker key, select next, select finish and it should prompt that the drive is accessible.</p>
<p><img src="http://images.stonesifer.org/bitlocker/13.jpg" /></p>
<p>14. The drive with the operating system should appear.  Select Next.</p>
<p><img src="http://images.stonesifer.org/bitlocker/14.jpg" /></p>
<p>15.  Select command prompt.</p>
<p><img src="http://images.stonesifer.org/bitlocker/15.jpg" /></p>
<p>16. type diskpart &lt;enter&gt; &#8211;&gt; list volume &lt;enter&gt;.  Note the operating system drive letter.</p>
<p><img src="http://images.stonesifer.org/bitlocker/16.jpg" /></p>
<p>17. type list disk &lt;enter&gt;.  Note the extra HDD we added.  We need to partition and format that drive.</p>
<p><img src="http://images.stonesifer.org/bitlocker/17.jpg" /></p>
<p>18. type select disk=1 &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/18.jpg" /></p>
<p>19. type create partition primary &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/19.jpg" /></p>
<p>20. type assign letter=G (or what ever available drive letter is next) &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/20.jpg" /></p>
<p>21. type select partition=1 &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/21.jpg" /></p>
<p>22. type format fs=ntfs label=&#8221;decrypted&#8221; quick &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/22.jpg" /></p>
<p>23. type list volume &lt;enter&gt; and you should see the new HDD.</p>
<p><img src="http://images.stonesifer.org/bitlocker/23.jpg" /></p>
<p>24. type exit &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/24.jpg" /></p>
<p>25.  Change over to the bitlocker CD tools.</p>
<p><img src="http://images.stonesifer.org/bitlocker/25.jpg" /></p>
<p>26. type repair-bde.exe d: g: -RecoveryPassword xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx &lt;enter&gt;.  It will begin decrypting the entire contents of the operating system encrypted drive to our newly created HDD.</p>
<p>repair-bde.exe &lt;input drive&gt; &lt;output drive&gt;  -RecoveryPassword xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/bitlocker/26.jpg" /></p>
<p><img src="http://images.stonesifer.org/bitlocker/26_1.jpg" /></p>
<p>27. Forgot&#8230;make the new HDD active.</p>
<p><img src="http://images.stonesifer.org/bitlocker/27.jpg" /></p>
<p>28. Close command prompt and select shutdown.</p>
<p>Edit the configuration .vmx file.</p>
<p>Remove the primary HDD 0:0.</p>
<p><img src="http://images.stonesifer.org/bitlocker/28.jpg" /></p>
<p>29.   Make our new HDD 0:0 in advance settings. Remove bitlocker tools CD.</p>
<p><img src="http://images.stonesifer.org/bitlocker/29.jpg" /></p>
<p>30. Should appear similar to this.</p>
<p><img src="http://images.stonesifer.org/bitlocker/30.jpg" /></p>
<p>31. Boot to the operating system DVD again to fix the MBR.</p>
<p>Select Next &#8211;&gt; Repair your computer &#8211;&gt; Repair and restart.</p>
<p><img src="http://images.stonesifer.org/bitlocker/31.jpg" /></p>
<p>32. Following message may occur.  Reboot to operating system DVD.</p>
<p><img src="http://images.stonesifer.org/bitlocker/32.jpg" /></p>
<p>33. Select Next. Select Repair your computer. Select Next for the recognized operating system. Select Startup Repair. Select Finish.</p>
<p><img src="http://images.stonesifer.org/bitlocker/33.jpg" /></p>
<p>34.  The system should boot.</p>
<p><img src="http://images.stonesifer.org/bitlocker/34.jpg" /></p>
<p>35. Now to get admin privileges.  If you have the LE version of liveview than you should be able to get in no problem because the passwords are blanked out.  If not, utilize <a href="http://www.pogostick.net/~pnh/ntpasswd/" target="_blank">http://www.pogostick.net/~pnh/ntpasswd/</a> bootable .iso file to blank out the passwords.  Additionally you could also use <a href="https://www.pinguin.lu/index.php" target="_blank">https://www.pinguin.lu/index.php.</a></p>
<p>Now the disk is unencrypted and you have admin privileges to run your volatile scripts or malware testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/12/06/bitlocker-decryption-with-known-key/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dual Boot Windows 7 (encrypted) with Ubuntu 11.04 (encrypted)</title>
		<link>http://stonesifer.org/2011/07/01/dual-boot-windows-7-encrypted-with-ubuntu-1104-encrypted/</link>
		<comments>http://stonesifer.org/2011/07/01/dual-boot-windows-7-encrypted-with-ubuntu-1104-encrypted/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:50:57 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Dual Boot]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/07/01/dual-boot-windows-7-encrypted-with-ubuntu-1104-encrypted/</guid>
		<description><![CDATA[Recently had a reason to dual boot a Windows 7 installation and Ubuntu on a system but needed the extra security of having the entire system encrypted.  There are quite a few &#8220;how to&#8221;s out there but this is what worked for me and minimized the detailed configuration changes necessary.
This is assuming you know how [...]]]></description>
			<content:encoded><![CDATA[<p>Recently had a reason to dual boot a Windows 7 installation and Ubuntu on a system but needed the extra security of having the entire system encrypted.  There are quite a few &#8220;how to&#8221;s out there but this is what worked for me and minimized the detailed configuration changes necessary.</p>
<p>This is assuming you know how to install Windows 7 or already have it installed on the system.  I&#8217;m using a virtual environment to display this how to.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image002.jpg" /></p>
<p><!--[if gte mso 9]><xml>  <w:WordDocument>   <w:View>Normal</w:View>   <w:Zoom>0</w:Zoom>   <w:TrackMoves/>   <w:TrackFormatting/>   <w:PunctuationKerning/>   <w:ValidateAgainstSchemas/>   <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>   <w:IgnoreMixedContent>false</w:IgnoreMixedContent>   <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>   <w:DoNotPromoteQF/>   <w:LidThemeOther>EN-US</w:LidThemeOther>   <w:LidThemeAsian>X-NONE</w:LidThemeAsian>   <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>   <w:Compatibility>    <w:BreakWrappedTables/>    <w:SnapToGridInCell/>    <w:WrapTextWithPunct/>    <w:UseAsianBreakRules/>    <w:DontGrowAutofit/>    <w:SplitPgBreakAndParaMark/>    <w:DontVertAlignCellWithSp/>    <w:DontBreakConstrainedForcedTables/>    <w:DontVertAlignInTxbx/>    <w:Word11KerningPairs/>    <w:CachedColBalance/>   </w:Compatibility>   <m:mathPr>    <m:mathFont m:val="Cambria Math"/>    <m:brkBin m:val="before"/>    <m:brkBinSub m:val="--"/>    <m:smallFrac m:val="off"/>    <m:dispDef/>    <m:lMargin m:val="0"/>    <m:rMargin m:val="0"/>    <m:defJc m:val="centerGroup"/>    <m:wrapIndent m:val="1440"/>    <m:intLim m:val="subSup"/>    <m:naryLim m:val="undOvr"/>   </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml>  <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267">   <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>   <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>   <w:LsdException Locked="false" Priority="39" Name="toc 1"/>   <w:LsdException Locked="false" Priority="39" Name="toc 2"/>   <w:LsdException Locked="false" Priority="39" Name="toc 3"/>   <w:LsdException Locked="false" Priority="39" Name="toc 4"/>   <w:LsdException Locked="false" Priority="39" Name="toc 5"/>   <w:LsdException Locked="false" Priority="39" Name="toc 6"/>   <w:LsdException Locked="false" Priority="39" Name="toc 7"/>   <w:LsdException Locked="false" Priority="39" Name="toc 8"/>   <w:LsdException Locked="false" Priority="39" Name="toc 9"/>   <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>   <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title"/>   <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>   <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>   <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>   <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>   <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid"/>   <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>   <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>   <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>   <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>   <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>   <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>   <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>   <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>   <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>   <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>   <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>   <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>   <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>  </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]></p>
<style>  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} </style>
<p> <![endif]--><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif'"></span>If your starting fresh on the installation only install Windows 7 on half the drive.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image004.jpg" /></p>
<p>If the operating system takes up the entire system hard drive than Right-Click on the volume to shrink and select Shrink Volume…</p>
<p><img src="http://images.stonesifer.org/dual_boot/image006.jpg" /></p>
<p>It will query the system hard drive to determine how much it can be shrunk.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image008.jpg" /></p>
<p>Try to get at least half, if not get what you can and select Shrink.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image010.jpg" height="92" width="85" /></p>
<p>At this point your ready to install <a href="http://www.truecrypt.org/downloads" title="TrueCrypt.org" target="_blank">Truecyrpt</a>.</p>
<p>Double Click on the executable.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image012.jpg" /></p>
<p>Accept the license &#8211;&gt; Accept</p>
<p><img src="http://images.stonesifer.org/dual_boot/image014.jpg" /></p>
<p>Install &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image016.jpg" /></p>
<p>Install</p>
<p><img src="http://images.stonesifer.org/dual_boot/image018.jpg" /></p>
<p>Wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image020.jpg" /></p>
<p>Done &#8211;&gt; OK</p>
<p><img src="http://images.stonesifer.org/dual_boot/image022.jpg" /></p>
<p>If you want to read, otherwise &#8211;&gt; No</p>
<p><img src="http://images.stonesifer.org/dual_boot/image024.jpg" /></p>
<p>Finish</p>
<p>Select the truecrypt icon.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image026.jpg" /></p>
<p>Locate the Create Volume button.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image029.jpg" /></p>
<p>Select the Create Volume button.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image031.jpg" /></p>
<p>Select &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image033.jpg" /></p>
<p>Normal &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image035.jpg" /></p>
<p>Windows system &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image037.jpg" /></p>
<p>Multi &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image039.jpg" /></p>
<p>Yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image041.jpg" /></p>
<p>Yes &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image043.jpg" /></p>
<p>1 &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image045.jpg" /></p>
<p>No &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image047.jpg" /></p>
<p>Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image049.jpg" /></p>
<p>Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image051.jpg" /></p>
<p>Enter password &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image053.jpg" /></p>
<p>yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image055.jpg" /></p>
<p>Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image057.jpg" /></p>
<p>Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image059.jpg" /></p>
<p>Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image061.jpg" /></p>
<p>Ok</p>
<p><img src="http://images.stonesifer.org/dual_boot/image062.jpg" /></p>
<p>Burn Disc</p>
<p><img src="http://images.stonesifer.org/dual_boot/image064.jpg" /></p>
<p>Verify the disk was burned correctly.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image066.jpg" /></p>
<p>Verified &#8211;&gt; next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image068.jpg" /></p>
<p>If your paranoid you can select one of the other options &#8211;&gt; Next</p>
<p><img src="http://images.stonesifer.org/dual_boot/image070.jpg" /></p>
<p>test</p>
<p><img src="http://images.stonesifer.org/dual_boot/image072.jpg" /></p>
<p>Ok</p>
<p><img src="http://images.stonesifer.org/dual_boot/image074.jpg" /></p>
<p>yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image076.jpg" /></p>
<p>Enter password&lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/dual_boot/image078.jpg" /></p>
<p>Windows should load.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image080.jpg" /></p>
<p>Encrypt</p>
<p><img src="http://images.stonesifer.org/dual_boot/image082.jpg" /></p>
<p>Ok</p>
<p><img src="http://images.stonesifer.org/dual_boot/image084.jpg" /></p>
<p>get some coffee&#8230;beer&#8230;whatever</p>
<p><img src="http://images.stonesifer.org/dual_boot/image086.jpg" /></p>
<p>Ok</p>
<p><img src="http://images.stonesifer.org/dual_boot/image088.jpg" /></p>
<p>Finish</p>
<p>Install Ubuntu</p>
<p>This is assuming you have downloaded the Ubuntu Alternate .iso file and burned to CD for installation.<br />
Ubuntu distro displayed is 11.04 alternate.  Alternate because it gives you the ability to encrypt LVMs.<br />
Insert Ubuntu CD into CD/DVD drive.<br />
Restart computer and boot from CD/DVD.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image090.jpg" /></p>
<p>Engrish &lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/dual_boot/image092.jpg" /></p>
<p>Install</p>
<p><img src="http://images.stonesifer.org/dual_boot/image094.jpg" /></p>
<p>Engrish</p>
<p><img src="http://images.stonesifer.org/dual_boot/image096.jpg" /></p>
<p>US</p>
<p><img src="http://images.stonesifer.org/dual_boot/image098.jpg" /></p>
<p>No</p>
<p><img src="http://images.stonesifer.org/dual_boot/image100.jpg" /></p>
<p>USA</p>
<p><img src="http://images.stonesifer.org/dual_boot/image102.jpg" /></p>
<p>USA</p>
<p><img src="http://images.stonesifer.org/dual_boot/image104.jpg" /></p>
<p>Wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image106.jpg" /></p>
<p>Wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image108.jpg" /></p>
<p>The network is not required &#8211;&gt; Yes<br />
If the system is hooked up to a network another screen will display.</p>
<p><img src="http://images.stonesifer.org/dual_boot/image110.jpg" height="135" width="383" /></p>
<p>Think of a computer name</p>
<p><img src="http://images.stonesifer.org/dual_boot/image112.jpg" /></p>
<p>Which ever your in</p>
<p><img src="http://images.stonesifer.org/dual_boot/image114.jpg" /></p>
<p>manual</p>
<p><img src="http://images.stonesifer.org/dual_boot/image116.jpg" /></p>
<p>Select free space</p>
<p><img src="http://images.stonesifer.org/dual_boot/image118.jpg" /></p>
<p>Create</p>
<p><img src="http://images.stonesifer.org/dual_boot/image120.jpg" /></p>
<p>Creating the /boot area &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image122.jpg" /></p>
<p>Primary</p>
<p><img src="http://images.stonesifer.org/dual_boot/image124.jpg" /></p>
<p>beginning</p>
<p><img src="http://images.stonesifer.org/dual_boot/image126.jpg" /></p>
<p>Select Mount Point</p>
<p><img src="http://images.stonesifer.org/dual_boot/image128.jpg" /></p>
<p>select /boot</p>
<p><img src="http://images.stonesifer.org/dual_boot/image130.jpg" /></p>
<p>Done</p>
<p><img src="http://images.stonesifer.org/dual_boot/image132.jpg" /></p>
<p>Select free space</p>
<p><img src="http://images.stonesifer.org/dual_boot/image133.jpg" /></p>
<p>Create</p>
<p><img src="http://images.stonesifer.org/dual_boot/image135.jpg" /></p>
<p>All &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image136.jpg" /></p>
<p>Primary</p>
<p><img src="http://images.stonesifer.org/dual_boot/image138.jpg" /></p>
<p>Use as:</p>
<p><img src="http://images.stonesifer.org/dual_boot/image140.jpg" /></p>
<p>LVM</p>
<p><img src="http://images.stonesifer.org/dual_boot/image142.jpg" /></p>
<p>Done</p>
<p><img src="http://images.stonesifer.org/dual_boot/image144.jpg" /></p>
<p>Encrypt</p>
<p><img src="http://images.stonesifer.org/dual_boot/image146.jpg" /></p>
<p>yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image148.jpg" /></p>
<p>Create</p>
<p><img src="http://images.stonesifer.org/dual_boot/image150.jpg" /></p>
<p>Select lvm (use space bar) &#8211;&gt; Continue</p>
<p>***IMPORTANT step to remember /dev/sda3 (99MB; ext4) is the /boot partition ***</p>
<p><img src="http://images.stonesifer.org/dual_boot/image152.jpg" /></p>
<p>Done</p>
<p><img src="http://images.stonesifer.org/dual_boot/image154.jpg" /></p>
<p>yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image156.jpg" /></p>
<p>Finish</p>
<p><img src="http://images.stonesifer.org/dual_boot/image158.jpg" /></p>
<p>password</p>
<p><img src="http://images.stonesifer.org/dual_boot/image160.jpg" /></p>
<p>Again</p>
<p><img src="http://images.stonesifer.org/dual_boot/image162.jpg" /></p>
<p>Configure LVM</p>
<p><img src="http://images.stonesifer.org/dual_boot/image164.jpg" /></p>
<p>Yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image166.jpg" /></p>
<p>Create</p>
<p><img src="http://images.stonesifer.org/dual_boot/image168.jpg" /></p>
<p>volumegrp01 &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image170.jpg" /></p>
<p>Select crypt</p>
<p><img src="http://images.stonesifer.org/dual_boot/image172.jpg" /></p>
<p>Create logical volume</p>
<p><img src="http://images.stonesifer.org/dual_boot/image174.jpg" /></p>
<p>&lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/dual_boot/image176.jpg" /></p>
<p>volum01 &#8211;&gt; Continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image178.jpg" /></p>
<p>This will be your swap space. 2 times your total RAM (1024MB x 2 = 2048MB) or (8192MB x 2 = 16384MB) etc &#8211;&gt; &lt;continue&gt;</p>
<p><img src="http://images.stonesifer.org/dual_boot/image180.jpg" /></p>
<p>Create another</p>
<p><img src="http://images.stonesifer.org/dual_boot/image182.jpg" /></p>
<p>&lt;enter&gt;</p>
<p><img src="http://images.stonesifer.org/dual_boot/image184.jpg" /></p>
<p>volume02 &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image186.jpg" /></p>
<p>This will be root / so use all &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image188.jpg" /></p>
<p>finish</p>
<p><img src="http://images.stonesifer.org/dual_boot/image190.jpg" /></p>
<p>highlight swap space area</p>
<p><img src="http://images.stonesifer.org/dual_boot/image192.jpg" /></p>
<p>Use as</p>
<p><img src="http://images.stonesifer.org/dual_boot/image194.jpg" /></p>
<p>swap area</p>
<p><img src="http://images.stonesifer.org/dual_boot/image196.jpg" /></p>
<p>Done</p>
<p><img src="http://images.stonesifer.org/dual_boot/image198.jpg" /></p>
<p>highlight root /</p>
<p><img src="http://images.stonesifer.org/dual_boot/image200.jpg" /></p>
<p>Ext4</p>
<p><img src="http://images.stonesifer.org/dual_boot/image202.jpg" /></p>
<p>Mount point</p>
<p><img src="http://images.stonesifer.org/dual_boot/image204.jpg" /></p>
<p>/</p>
<p><img src="http://images.stonesifer.org/dual_boot/image206.jpg" /></p>
<p>Done</p>
<p><img src="http://images.stonesifer.org/dual_boot/image208.jpg" /></p>
<p>Finish</p>
<p><img src="http://images.stonesifer.org/dual_boot/image210.jpg" /></p>
<p>yes</p>
<p><img src="http://images.stonesifer.org/dual_boot/image212.jpg" /></p>
<p>wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image214.jpg" /></p>
<p>wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image216.jpg" /></p>
<p>enter your name</p>
<p><img src="http://images.stonesifer.org/dual_boot/image218.jpg" /></p>
<p>enter login</p>
<p><img src="http://images.stonesifer.org/dual_boot/image220.jpg" /></p>
<p>password</p>
<p><img src="http://images.stonesifer.org/dual_boot/image222.jpg" /></p>
<p>again</p>
<p><img src="http://images.stonesifer.org/dual_boot/image224.jpg" /></p>
<p>No (the whole thing is encrypted)</p>
<p><img src="http://images.stonesifer.org/dual_boot/image226.jpg" /></p>
<p>wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image228.jpg" /></p>
<p>wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image230.jpg" /></p>
<p>No</p>
<p><img src="http://images.stonesifer.org/dual_boot/image232.jpg" /></p>
<p>enter your /boot device /dev/sda3 &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image234.jpg" /></p>
<p>wait</p>
<p><img src="http://images.stonesifer.org/dual_boot/image236.jpg" /></p>
<p>remove cd &#8211;&gt; continue</p>
<p><img src="http://images.stonesifer.org/dual_boot/image238.jpg" /></p>
<p>esc</p>
<p><img src="http://images.stonesifer.org/dual_boot/image240.jpg" /></p>
<p>2 (the 100MB is the Windows 7 reserve)</p>
<p><img src="http://images.stonesifer.org/dual_boot/image242.jpg" /></p>
<p>enter</p>
<p><img src="http://images.stonesifer.org/dual_boot/image244.jpg" /></p>
<p>encrypt password</p>
<p><img src="http://images.stonesifer.org/dual_boot/image246.jpg" /></p>
<p>login &#8211;&gt; reboot to see if Windows still works</p>
<p><img src="http://images.stonesifer.org/dual_boot/image248.jpg" /></p>
<p>truecrypt password</p>
<p><img src="http://images.stonesifer.org/dual_boot/image250.jpg" /></p>
<p>awesome</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/07/01/dual-boot-windows-7-encrypted-with-ubuntu-1104-encrypted/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EnCase7 Quick Look</title>
		<link>http://stonesifer.org/2011/05/03/encase7-quick-look/</link>
		<comments>http://stonesifer.org/2011/05/03/encase7-quick-look/#comments</comments>
		<pubDate>Tue, 03 May 2011 16:19:53 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[EnCase]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/05/03/encase7-quick-look/</guid>
		<description><![CDATA[Thought I would walk through EnCase v7 Preview Version as others might wish to see the new interface.  After extracting the compressed file the following files were available.

Installing the software hasn&#8217;t changed much from v6.  Couple additional directories and the removal of Backup.  Backup is now located within the Case area.

The introduction front end has [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I would walk through EnCase v7 Preview Version as others might wish to see the new interface.  After extracting the compressed file the following files were available.</p>
<p><img src="http://images.stonesifer.org/0.0_install_files.jpg" /></p>
<p>Installing the software hasn&#8217;t changed much from v6.  Couple additional directories and the removal of Backup.  Backup is now located within the Case area.</p>
<p><a href="http://images.stonesifer.org/0_installation_dir.jpg" target="_blank"><img src="http://images.stonesifer.org/0_installation_dir_small.jpg" height="480" width="535" /></a><br />
The introduction front end has changed.</p>
<p><a href="http://images.stonesifer.org/1_front_screen.jpg" target="_blank"><img src="http://images.stonesifer.org/1_front_screen_small.jpg" /></a></p>
<p>Selecting New Case shows additional options within Case Options.  The Case Info area populates additional information within the Report.  The three options None, Basic, and Forensic vary in content amount.</p>
<p><img src="http://images.stonesifer.org/2_new_case_screen_small.jpg" /></p>
<p>Basic input options.</p>
<p><img src="http://images.stonesifer.org/3_new_case_screen_basic_small.jpg" /></p>
<p>Forensic input options are extensively more.</p>
<p><img src="http://images.stonesifer.org/4_new_case_screen_forensic_small.jpg" /></p>
<p>Creating a Case front end.</p>
<p><a href="http://images.stonesifer.org/5_case_home_screen.jpg" target="_blank"><img src="http://images.stonesifer.org/5_case_home_screen_small.jpg" width="534" /></a></p>
<p>Adding Evidence button can be used via the menu bar or front end.  The additional options of Add Local Device&#8230; etc are not in operation within the Preview Version.</p>
<p><a href="http://images.stonesifer.org/6_add_evidence.jpg" target="_blank"><img src="http://images.stonesifer.org/6_add_evidence_small.jpg" height="480" width="534" /></a></p>
<p>Adding evidence is relatively the same as v6.  The v7 Preview Version came with an evidence file and cert.  The cert works per specific dongle.</p>
<p><img src="http://images.stonesifer.org/12_explorer_evidence_dir.jpg" /></p>
<p>The Case area directory structure has changed and we can see the Backup moved.</p>
<p><img src="http://images.stonesifer.org/13_explorer_case_dir.jpg" /></p>
<p>After evidence is add the following screen should appear and verify the evidence.</p>
<p><a href="http://images.stonesifer.org/16_added_evidence_verify.jpg" target="_blank"><img src="http://images.stonesifer.org/16_added_evidence_verify_small.jpg" /></a></p>
<p>After verified, hashs match within the Fields view.  Also notice Processing Status shows unprocessed.</p>
<p><a href="http://images.stonesifer.org/17_added_evidence_verified.jpg" target="_blank"><img src="http://images.stonesifer.org/17_added_evidence_verified_small.jpg" /></a></p>
<p>It becomes necessary to process the evidence to recover folders, process compressed files, etc.  The Process Evidence button is located under the Add Evidence area tab.  Appears to take over for the once known Search tab.</p>
<p><a href="http://images.stonesifer.org/6.1_process_evidence.jpg" target="_blank"><img src="http://images.stonesifer.org/6.1_process_evidence_small.jpg" /></a></p>
<p>After evidence is processed the status will change.</p>
<p><img src="http://images.stonesifer.org/6.2_processed_indicator.jpg" /></p>
<p>Viewing the evidence is conducted by clicking on the evidence under the name column or using the Viewing tab to switch to Entry.</p>
<p><img src="http://images.stonesifer.org/18_evidence_view.jpg" /></p>
<p>Entry view goes back towards the traditional view of EnCase.</p>
<p><a href="http://images.stonesifer.org/19_entries_view.jpg" target="_blank"><img src="http://images.stonesifer.org/19_entries_view_small.jpg" /></a></p>
<p>Noticed the right-click option have disappeared.</p>
<p><img src="http://images.stonesifer.org/20_right_click_away.jpg" /></p>
<p>They have been moved to the side button area in the menu bar.</p>
<p><a href="http://images.stonesifer.org/22_right_click_side.jpg" target="_blank"><img src="http://images.stonesifer.org/22_right_click_side_small.jpg" /></a></p>
<p>Gallery view hasn&#8217;t changed.</p>
<p><a href="http://images.stonesifer.org/30_gallery_view.jpg" target="_blank"><img src="http://images.stonesifer.org/30_gallery_view_small.jpg" /></a></p>
<p>Viewing the registry and other compound files is still done via view file structure.</p>
<p><a href="http://images.stonesifer.org/23_pst_view_file_structure.jpg" target="_blank"><img src="http://images.stonesifer.org/23_pst_view_file_structure_small.jpg" /></a></p>
<p>Registry view.</p>
<p><a href="http://images.stonesifer.org/32_registry_dhcp_ipaddress.jpg" target="_blank"><img src="http://images.stonesifer.org/32_registry_dhcp_ipaddress_small.jpg" /></a></p>
<p>Bookmarking can be accomplished by using the Decode tab and selecting the appropriate view and a right-click.</p>
<p><a href="http://images.stonesifer.org/33_registry_bookmark.jpg" target="_blank"><img src="http://images.stonesifer.org/33_registry_bookmark_small.jpg" /></a></p>
<p>Viewing email has changed with different views.  After processing the evidence, switching to the Records tab allows the different email views.</p>
<p><a href="http://images.stonesifer.org/34_after_processed_show_record.jpg" target="_blank"><img src="http://images.stonesifer.org/34_after_processed_show_record_small.jpg" /></a></p>
<p>After digging into the email .PST inbox you can follow email message conversations by using the Find Related tab.</p>
<p><a href="http://images.stonesifer.org/35_find_related_tab.jpg" target="_blank"><img src="http://images.stonesifer.org/35_find_related_tab_small.jpg" /></a></p>
<p>Selecting Show Related Messages populates the conversations that match based on your first selection.</p>
<p><a href="http://images.stonesifer.org/36_show_related.jpg" target="_blank"><img src="http://images.stonesifer.org/36_show_related_small.jpg" /></a></p>
<p>Report tab has also seem some changes and looks pretty good.</p>
<p><a href="http://images.stonesifer.org/37_report_view.jpg" target="_blank"><img src="http://images.stonesifer.org/37_report_view_small.jpg" /></a></p>
<p>Take a look at the <a href="http://stonesifer.org/__oneclick_uploads/2011/05/encase-v7-preview-manual.pdf" title="Preview Manual">Preview Manual</a> of additional information.</p>
<p>Also the <a href="http://stonesifer.org/__oneclick_uploads/2011/05/encase-v7-preview-release-notes.pdf" title="Release Notes">Release Notes</a> have some nice details if interested.</p>
<p>&#8211;Ric</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/05/03/encase7-quick-look/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Volatile Memory and Logs</title>
		<link>http://stonesifer.org/2011/03/30/volatile-memory-and-logs/</link>
		<comments>http://stonesifer.org/2011/03/30/volatile-memory-and-logs/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 00:15:29 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Volatile Data]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2011/03/30/volatile-memory-and-logs/</guid>
		<description><![CDATA[I wanted to post my experience with creating a volatile log and memory collector.  I&#8217;ve created this batch script for collecting Windows operating system logs and memory if desired.  There are many of us (forensic examiners) that are not taking memory as evidence or volatile logs that after the hard drive is powered down those [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to post my experience with creating a volatile log and memory collector.  I&#8217;ve created this batch script for collecting Windows operating system logs and memory if desired.  There are many of us (forensic examiners) that are not taking memory as evidence or volatile logs that after the hard drive is powered down those logs are lost.</p>
<p>Right to it&#8230;I&#8217;ve rolled the script into an executable.  The idea behind the script is to have it located on a thumb drive or any external media that is compliant with Windows.  The executable can be extracted with your favorite compression program to take a look at the guts.</p>
<p>The script simply uses existing programs that were designed with collecting volatile data in mind.  Hopefully I&#8217;m still within the using agreements but if not I&#8217;m sure someone will let me know.</p>
<p>When the program starts it lets you know how much RAM there is on the system.  Ensure your running with administrator level privileges.  If you want to collect the RAM it will use windd32.exe or windd64.exe.  These version are the community versions.</p>
<p><img src="http://images.stonesifer.org/ram.jpg" /></p>
<p>If you select yes to imaging RAM it will be placed on the root of the system you ran the executable from.</p>
<p><img src="http://images.stonesifer.org/ram2.jpg" /></p>
<p>If you select no it will continue and ask whether you wish to collect volatile data from the system.</p>
<p><img src="http://images.stonesifer.org/volatile1.jpg" /></p>
<p>Should you select no which could be the case because you only wanted to collect RAM than the program will end.  If you select yes the rest of the script runs automated.</p>
<p><img src="http://images.stonesifer.org/volatile2.jpg" /></p>
<p>The script will count down the item it is collecting.  Speed depends on the system.</p>
<p>The list of items will indicate the information it is collecting or you can view it within the start_VS.cmd file.</p>
<p><img src="http://images.stonesifer.org/volatile3.jpg" /></p>
<p>Some of the information you could say was not that volatile and still remains on the hard drive which is true.  I like the ability to get to the important information quickly to make an assessment without waiting on the full forensic exam.</p>
<p><img src="http://images.stonesifer.org/volatile4.jpg" /></p>
<p>If you find I am not collecting something of value, I can most certainly add it.  Just let me know.</p>
<p><img src="http://images.stonesifer.org/volatile5.jpg" /></p>
<p>After completion the log contents will be compressed and remain on the drive you ran the executable from.  The volatile_snapshot directory will be removed.</p>
<p><img src="http://images.stonesifer.org/volatile6.jpg" /></p>
<p>The compressed log file is named &lt;computername&gt;_&lt;time&amp;date&gt;.7z.</p>
<p><img src="http://images.stonesifer.org/file.jpg" /></p>
<p>Extract the file and begin viewing the contents using the .REPORT.html</p>
<p>More on going through the file and its contents later.</p>
<p>File: <a href="http://stonesifer.org/__oneclick_uploads/2011/08/vs_v2.zip" title="Volatile Snapshot V2">Volatile Snapshot V2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2011/03/30/volatile-memory-and-logs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is your anti-virus completely cleaning?</title>
		<link>http://stonesifer.org/2010/11/11/is-your-anti-virus-completely-cleaning/</link>
		<comments>http://stonesifer.org/2010/11/11/is-your-anti-virus-completely-cleaning/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 01:58:47 +0000</pubDate>
		<dc:creator>Ric</dc:creator>
		
		<category><![CDATA[Antivirus]]></category>

		<guid isPermaLink="false">http://stonesifer.org/2010/11/11/is-your-anti-virus-completely-cleaning/</guid>
		<description><![CDATA[The question that was posed to me was whether or not to re-image an infected system.  Anti-virus was reporting that the systems infected files had been cleaned and/or deleted.  Why should I have to re-image the system if my anti-virus is telling me that the system is clean?
This sparks the debate “re-image or not to [...]]]></description>
			<content:encoded><![CDATA[<p>The question that was posed to me was whether or not to re-image an infected system.  Anti-virus was reporting that the systems infected files had been cleaned and/or deleted.  Why should I have to re-image the system if my anti-virus is telling me that the system is clean?</p>
<p>This sparks the debate “re-image or not to re-image” after infection.  Re-imaging a system is time consuming, cost ineffective and a loss of revenue and work product.  The positive side of re-imaging is that you have thoroughly removed the suspect chance your anti-virus product is not fully cleaning after infection.</p>
<p>The question might boil down to how lucky do you feel?</p>
<p>The recommendations of leading industry organizations have not completely sided one way or the other.  The US-CERT http://www.us-cert.gov/reading_room/trojan-recovery.pdf document indicates in paragraph 5 “If the previous step failed to clean your computer, the most effective option is to wipe or format the hard drive and reinstall the operating system.”   The previous steps are to run an anti-virus program on the infected system using a live compact disc.  This is far from coming out and recommending re-imaging all the time after an infection.</p>
<p>The open source ClamWin Free Antivirus software (http://www.clamwin.com/content/view/146/27/)  does go as far as to say in one of its step that should be taken after an infection is to “Perform a clean install of Windows – a format of the drive *should* be completed.”</p>
<p>The National Institute of Standards and Technology (NIST) Special Publication 800-83 (http://csrc.nist.gov/publications/nistpubs/800-83/SP800-83.pdf) Guide to Malware Incident Prevention and Handling states “Because rebuilding a host is typically more resource-intensive than other eradication methods, it should be performed only when no other eradication method or combination of methods is sufficient.”</p>
<p>I recently came across a virus on a system and by using time and date analysis from log entries I was able to narrow down the virus to a file, specifically a compressed file with no extension.  It turned out the file was from a java drive-by-download.  The system had a current anti-virus solution, McAfee.  After hashing the file I wanted to find out why McAfee didn’t catch it.  Virustotal.com has McAfee within its depository of anti-virus scanning programs.  I hashed the suspicious compressed file and searched the Virustotal.com database to see if it had been scanned previously.  The following were the results:</p>
<p><a href="http://images.stonesifer.org/10.jpg" target="_blank"><img src="http://images.stonesifer.org/10_1.jpg" height="375" width="314" /></a></p>
<p>It turns out that McAfee doesn’t catch it.  I also noted the submission date and it was quite recent.  I wasn’t shock so much as to learn that McAfee didn’t catch it but how much more does McAfee miss or for that matter the rest of the anti-virus solutions available to the public.</p>
<p>In searching for documentation about anti-virus solutions success rates I discovered Mandiant’s report called M-Trends the Advance Persistent Threat (APT) (http://www.mandiant.com/products/services/m-trends).  In it Mandiant states “When MANDIANT discovers new APT malware, we scan it with the anti-virus and antimalware programs that most organizations use. Of the samples we discovered and examined, only 24% of all the APT malware was detected by security software.”  That was enlightening to say the least that 76% of malicious software gets passed anti-virus solutions.</p>
<p>I than decided to test this claim.  While surfing the internet for anti-virus solutions I came across a pretty convincing Fake Anti-Virus (FakeAV) ad.  Now the image is clearly from the web browser Firefox but the window appears to be from a Windows Explorer environment.  This obviously is to confuse the less sinister minds that are not in the know as to malware coder’s intentions.  The screen starts out appearing to scan my computer for viruses, when it really is not, and conveniently discovers numerous infection denoted by the fake Windows Security Alert.</p>
<p><a href="http://images.stonesifer.org/11.jpg" target="_blank"><img src="http://images.stonesifer.org/11_1.jpg" height="226" width="314" /></a></p>
<p>If the user clicks “remove all” a download windows appears and if the user clicks on the “X” to close the window the download window appears also.  This is with Firefox web browser, with Windows Internet Explorer the option to run the program appears in the download window.</p>
<p><a href="http://images.stonesifer.org/12.jpg" target="_blank"><img src="http://images.stonesifer.org/12_1.jpg" height="227" width="314" /></a></p>
<p>After saving the file I would have expected my anti-virus solution (Norton End Point Security) to alert me that I had download malicious software.  Think again, I got nothing, no alerts.  My sinister mind is thinking this very well could not be legitimate software.</p>
<p><img src="http://images.stonesifer.org/13.jpg" height="111" width="96" /> <img src="http://images.stonesifer.org/14.jpg" height="269" width="339" /></p>
<p>So I decided to hash the executable and see if Virustotal.com had any info on this file.  Turns out there was no information in their database.</p>
<p><img src="http://images.stonesifer.org/15.jpg" height="127" width="381" /></p>
<p>So the next course of action was to upload the executable to see if other anti-virus solutions catch it.  Come to find out 23 out of 40 anti-virus solutions recognize this executable as FakeAV malicious software.  Some particular vendors I would have thought should have picked this up, but didn’t were ClamAV, McAfee and Microsoft.  Norton Anti-virus is not a part of the listed software tools within Virustotal.com but it to did not recognize this as malicious.</p>
<p><img src="http://images.stonesifer.org/16.jpg" height="73" width="284" /></p>
<p>We’ve established that anti-virus solutions detect only a fraction of the malicious software that is out in the wild.</p>
<p>Now back to the question, of the malicious software that it does detect will it clean, delete, and/or remove all of the malicious software installed or registry changes that the software makes.  So I conveniently have my own personally built trojan.  Prior to installing the malicious program, InCtrl5 was run on the malicious software to record all the changes made without the anti-virus product installed and the report saved for comparison.  I than made sure McAfee was up-to-date on its virus definition and launched the malicious program within VMWare.  First the McAfee firewall asked if it could access the internet and I authorized it to do so.  After being infected I started a full scan.</p>
<p>It’s not my purpose to just pick on McAfee anti-virus solution.  I also picked on Norton.  That being said, is it the anti-virus solutions fault for not finding all malicious software.  The answer is emphatically no.  Anti-virus solutions are only as good as you and I make them.  This is evident by Mandiant’s test that they only caught 24% of malicious software.  My example above reference the FakeAV I received, it’s your responsibility to help your anti-virus solution out by submitting the executable sample for testing.  The anti-virus vendors will write new code into their virus signatures to catch those malicious programs.  Remember anti-virus programs are tools and you just don’t have one tool in your tool box.</p>
<p>The scan detected 57 issues and 8 were already quarantined.</p>
<p><a href="http://images.stonesifer.org/17.jpg" target="_blank"><img src="http://images.stonesifer.org/17_1.jpg" height="247" width="314" /></a></p>
<p>After manually removing all the items two appear as not removed which are slimftpd and radmin.</p>
<p><a href="http://images.stonesifer.org/18.jpg" target="_blank"><img src="http://images.stonesifer.org/18_1.jpg" height="247" width="314" /></a></p>
<p>After a reboot McAfee discovered that we had told it to remove slimftpd and it again confirmed its removal.</p>
<p><img src="http://images.stonesifer.org/19.jpg" height="233" width="189" /></p>
<p>Let see what wasn’t removed.  Since I made the trojan I conveniently know the backdoors created.  My trojan installed RAdmin but McAfee reported that it was not able to remove it.  I set the RAdmin port as 136 which appears operational.  The point here is that its removal wasn’t automatic.</p>
<p><img src="http://images.stonesifer.org/20.jpg" height="212" width="420" /></p>
<p><img src="http://images.stonesifer.org/21_.jpg" height="160" width="183" /></p>
<p><a href="http://images.stonesifer.org/23.jpg" target="_blank"><img src="http://images.stonesifer.org/23_1.jpg" height="194" width="314" /></a></p>
<p>Additional unseen issues actually deal with the Windows operating system default programs.  It’s difficult to determine what else was added or removed to include registry changes.  Here we see additional accounts were created.  Which ones are legitimate? “_” is the default created administrator account with the name changed. “Guest” is default.  “HelpDesk” is not default.  “HelpAssistant” is default.  Further detailed inspection reveals the HelpDesk account was added to admin privileges.  Checking the default account HelpAssistant, low and behold that account was also changed with admin privileges.</p>
<p><img src="http://images.stonesifer.org/24.jpg" height="170" width="627" /></p>
<p><img src="http://images.stonesifer.org/25.jpg" height="132" width="401" /></p>
<p>Noticing also that port 3389 was open on the system.  What program uses that port, Remote Desktop?  These accounts could be used to access the system with admin privileges.  Additionally port 25 appears open and is an open SPAM relay.  There are numerous registry changes that were made to include delayed starting actions.  Now McAfee caught a majority of the items and removed them but not all.</p>
<p><a href="http://images.stonesifer.org/26.jpg" target="_blank"><img src="http://images.stonesifer.org/26_1.jpg" height="159" width="314" /></a></p>
<p>So the point is made that even though anti-virus solutions say that they have cleaned the system of a malicious program it is probably true minus the items that were missed.  The program hopefully does not go as far as to say that the system is free of malicious programs because this is probably not true.</p>
<p>The above point is to emphasize that if a system does become infected with any virus it is imperative that the system be re-imaged to ensure the system is cleaned with a known good operational load, patched, and returned to service.</p>
<p>Ric</p>
<p>Update 12 Nov 2010</p>
<p>Received a response back from Symantec.  Note the Developer Notes at the bottom.</p>
<p><a href="http://images.stonesifer.org/27.jpg" target="_blank"><img src="http://images.stonesifer.org/27_1.jpg" height="324" width="386" /></a></p>
<p>Update 19 Nov 2010</p>
<p>Additional regulation findings of interest.  Thanks Dave Baker, Mitre.org</p>
<p class="MsoPlainText">SANS.org Incident Handling Small to Medium Enterprise (http://www.sans.org/reading_room/whitepapers/incident/incident-handling-smes-small-medium-enterprises_32764)</p>
<p>para 2.4 Eradication &#8220;Once the cause has been determined, the system can be rebuilt from a known good backup copy of the system. If no backup can be found, then the system must be reinstalled from scratch (including the OS!).&#8221;</p>
<p>para 2.5 Recovery &#8220;In the recovery phase, operations return to normal. The system has either been rebuilt from scratch or rebuilt from a backup, and it is ready to be validated for production. This includes verifying the system is secure and will not fall prey to the same or similar attacks once it has been put online.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://stonesifer.org/2010/11/11/is-your-anti-virus-completely-cleaning/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

