<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7436862332086008947</atom:id><lastBuildDate>Thu, 26 Mar 2026 11:37:43 +0000</lastBuildDate><title>InfoSecNirvana</title><description></description><link>http://infosecnirvana.blogspot.com/</link><managingEditor>noreply@blogger.com (InfoSecNirvana)</managingEditor><generator>Blogger</generator><openSearch:totalResults>175</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-2455943995038502391</guid><pubDate>Fri, 29 Jan 2016 08:50:00 +0000</pubDate><atom:updated>2016-01-29T00:51:08.474-08:00</atom:updated><title>Twitter account</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
I plan to do more updates on my Twitter feed&amp;nbsp;&lt;a class=&quot;DashboardProfileCard-screennameLink u-linkComplex u-linkClean&quot; href=&quot;https://twitter.com/nairsaj&quot; style=&quot;background: rgb(255, 255, 255); color: #66757f; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 16px; padding-right: 5px; text-decoration: none !important;&quot;&gt;&lt;span style=&quot;color: #66757f; font-family: &amp;quot;helvetica neue&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;&quot;&gt;&lt;span style=&quot;background: rgb(255, 255, 255); line-height: 16px; padding-right: 5px;&quot;&gt;@&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;u-linkComplex-target&quot; style=&quot;background: rgb(255 , 255 , 255); color: #66757f; font-family: &amp;quot;helvetica neue&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px; line-height: 16px; padding-right: 5px; text-decoration: none;&quot;&gt;nairsaj&lt;/span&gt;&lt;/a&gt;. When I have more content to write about, I will post it here.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2016/01/twitter-account.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-4128705373271968642</guid><pubDate>Sat, 26 Sep 2015 16:06:00 +0000</pubDate><atom:updated>2015-09-26T09:06:51.745-07:00</atom:updated><title>More artifacts through PowerShell - Part 6</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;b&gt;MsiInstaller events.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Applications that use Windows Installer logs both installation and removal events; these are available on the &#39;application&#39; event log. These are extremely useful in identifying malicious application installs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;application&#39;;ID=11707} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;application&#39;;ID=11724} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
There are many other events related to MsiInstaller; if you need to see all, filter the application log for event source of MsiInstaller.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Get-EventLog -LogName application -Source MsiInstaller&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Service start and state change events.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
If you want track the services when they started, here is a one liner:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;system&#39;;ID=7045} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Note that configuration changes and state changes for a service is tracked by event ID 7036; this is already part of the &lt;a href=&quot;http://infosecnirvana.codeplex.com/&quot; target=&quot;_blank&quot;&gt;LRUP&lt;/a&gt; code.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;system&#39;;ID=7036} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Symantec Risk log.&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Symantec logs the risks identified in application event log; to get the specific log, issue this one liner:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;application&#39;;ID=51} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Volume Shadow Copy shutdown events.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Some of the malware may shutdown the VSS; the below one liner will give you more information on this log.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;application&#39;;ID=8224} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://infosecnirvana.codeplex.com/&quot; target=&quot;_blank&quot;&gt;LRUP&lt;/a&gt; code has a one liner to show the shadow copies created in a system; it&#39;s given below as well.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Gwmi -ea 0 Win32_ShadowCopy | select DeviceObject,@{NAME=&#39;CreationDate&#39;;EXPRESSION={$_.ConvertToDateTime($_.InstallDate)}}&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/09/more-artifacts-through-powershell-part-6.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-836509319688872861</guid><pubDate>Mon, 03 Aug 2015 11:54:00 +0000</pubDate><atom:updated>2015-08-03T04:54:56.093-07:00</atom:updated><title>More artifacts through PowerShell - Part 5</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;MS Office Trust Records.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;When documents are downloaded from untrusted sources, a &quot;trust&quot; prompt is shown to the user when the user wants to edit the document. The full path of the document is saved under the below registry key when this happens.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Software\Microsoft\Office\*\PowerPoint\Security\Trusted Documents\TrustRecords (* should be replaced with the version of the MS Office installed in the system but for PowerShell gathering, we can still use the * as shown below:)&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;gp hkcu:&#39;\Software\Microsoft\Office\*\Excel\Security\Trusted Documents\TrustRecords&#39;&amp;nbsp;| select * -ExcludeProperty PS*&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;gp hkcu:&#39;\Software\Microsoft\Office\*\PowerPoint\Security\Trusted Documents\TrustRecords&#39;&amp;nbsp;| select * -ExcludeProperty PS*&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;gp hkcu:&#39;\Software\Microsoft\Office\*\Word\Security\Trusted Documents\TrustRecords&#39;&amp;nbsp;| select * -ExcludeProperty PS*&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Want to see all with one command?&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;gci -r hkcu:&#39;\Software\Microsoft\Office\*\*\Security\Trusted Documents&#39; | select -ExpandProperty Property&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;References:&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;http://blogs.technet.com/b/office2010/archive/2009/09/28/trusted-documents.aspx&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;http://forensicartifacts.com/2012/07/ntuser-trust-records/&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;Decrypting UserAssist key entries.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Forensic use of UserAssist keys are well known. It primarily stores information about actions the user took with the Shell; actions such as starting applications, double clicking shortcuts, etc. Entries in the UserAssist keys are ROT13 encrypted, the encrypted entries can be viewed by issuing the following one liner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;gp &quot;hkcu:\Software\Microsoft\Windows\Currentversion\Explorer\Userassist\*\Count&quot; | ft -auto -wrap&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;In order to decrypt the entries, we can use the function provided in this &lt;a href=&quot;http://learningpcs.blogspot.in/2012/06/powershell-v2-function-convertfrom.html&quot; target=&quot;_blank&quot;&gt;blog&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;References:&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;http://forensicartifacts.com/2010/07/userassist/&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;http://blog.didierstevens.com/programs/userassist/&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;Chrome Local Storage entries.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Local storage in Chrome browser is part of HTML5 specification; it is designed to store persistent data (even after the browser is closed) local to the system such as the cookies. This is in SQLite format but can be accessed through PowerShell to get a rough idea about the web sites visited.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Here is the one liner for this:&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;dir $env:LOCALAPPDATA\&#39;Google\Chrome\User Data\Default\Local Storage&#39; | Sort-Object LastWriteTime -desc&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
Reference:&lt;br /&gt;
http://www.html5rocks.com/en/tutorials/offline/storage/&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/08/more-artifacts-through-powershell-part-5.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-6260034932265605417</guid><pubDate>Sat, 04 Jul 2015 12:18:00 +0000</pubDate><atom:updated>2015-07-04T05:18:26.383-07:00</atom:updated><title>More artifacts through PowerShell - Part 4</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Typed URLs - alternate location.&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
The main script &lt;a href=&quot;http://infosecnirvana.codeplex.com/&quot; target=&quot;_blank&quot;&gt;LRUP&lt;/a&gt; already contain many IE related artifacts; here is one more that we can add to the list.&lt;br /&gt;
Under APPDATA, the system keeps a log of the URLs typed into the address bar to provide auto suggestion of the URLs that are being typed in. This log can be viewed using the Get-Content CmdLet.&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;gc $env:LOCALAPPDATA\temp\structuredquery.log&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;b&gt;DLLs and vendor information.&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
If you need to filter out the DLLs identified in the system that are non-Microsoft related, use the below one liner. For more information, check Trevor Sullivan&#39;s &lt;a href=&quot;http://trevorsullivan.net/2010/08/25/powershell-finding-currently-loaded-dlls/&quot; target=&quot;_blank&quot;&gt;article&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;$ProcExes = Get-WmiObject -Class CIM_ProcessExecutable;&amp;nbsp;&lt;/span&gt;foreach ($item in $ProcExes) {[wmi]&quot;$($item.Antecedent)&quot; | ? { $_.Manufacturer -ne &#39;Microsoft Corporation&#39; } | select FileName,Extension,Manufacturer,Version |ft -auto -wrap}&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;Application Compatibility related.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Application compatibility is a feature that can make older programs that have compatibility problems work better in Windows 7 and Windows 2008 operating systems.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;System tracks the programs installed under the below registry key. Note that it &quot;&lt;/span&gt;stores the list of all programs for which it came up under the following key for each user, even if no compatibility modes were applied (e.g. in the case where the user reported that the program worked correctly)&quot; &amp;nbsp;- MSDN &lt;a href=&quot;https://msdn.microsoft.com/en-us/library/bb756937.aspx&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Compatibility Assistant\Persisted&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;In PowerShell, this can be gathered through the following one liner:&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;gp hkcu:&#39;\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Compatibility Assistant\Persisted&#39; | select * -ExcludeProperty PS*&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Since it is taken from HKCU location, it is an indication that the particular user ran these programs.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;References:&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;https://msdn.microsoft.com/en-us/library/bb756937.aspx&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;http://journeyintoir.blogspot.in/2013/12/revealing-program-compatibility.html&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/07/more-artifacts-through-powershell-part-4.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-4587087625636840272</guid><pubDate>Sun, 28 Jun 2015 08:29:00 +0000</pubDate><atom:updated>2015-06-28T01:29:32.307-07:00</atom:updated><title>More artifacts through PowerShell - Part 3</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
The main &lt;a href=&quot;https://infosecnirvana.codeplex.com/&quot; target=&quot;_blank&quot;&gt;LRUP code&lt;/a&gt; lists many event logs that are useful in an incident response scenario. In this section, let&#39;s look some additional event logs that are going to be useful to collect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;b&gt;Firewall related.&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
The below log shows the firewall rule changes and other actions such as profile changes.&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;i&gt;Get-winevent -logname &quot;Microsoft-Windows-Windows Firewall With Advanced Security/Firewall&quot; | ft -auto -wrap&amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;Network related.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;The below log&amp;nbsp;&lt;/span&gt;shows the time when a network is changed from a home network to office network.&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;&lt;span class=&quot;s1&quot;&gt;Get-winevent -logname Microsoft-Windows-BranchCache/Operational&amp;nbsp;&lt;/span&gt;&amp;nbsp;| ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
The below log shows when a network connection was made.&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;Get-winevent -logname Microsoft-Windows-NetworkProfile/Operational &amp;nbsp;| ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
Below log should be checked to see the RDP logins. More information on the event IDs is available at this MS &lt;a href=&quot;https://technet.microsoft.com/en-us/library/ee891289(v=ws.10).aspx&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;.&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;&lt;span class=&quot;s1&quot;&gt;Get-winevent -logname Microsoft-Windows-TerminalServices-LocalSessionManager&amp;nbsp;&lt;/span&gt;| ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;Driver related.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;Looking at the below log helps &lt;/span&gt;identify code integrity issues related to bad drivers or unsigned drivers. More information is available at this MSDN &lt;a href=&quot;https://msdn.microsoft.com/en-us/library/windows/hardware/ff541080(v=vs.85).aspx&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;.&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;&lt;span class=&quot;s1&quot;&gt;Get-winevent -logname Microsoft-Windows-CodeIntegrity/Operational |&amp;nbsp;&lt;/span&gt;ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
Speaking of drivers, we can use the below command to get a listing of PnP related driver information.&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;i&gt;Get-WmiObject -Class Win32_PnPEntity | select Caption,Name,Service&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
When a device is attached the computer, Windows attempts to detect the device type and install the appropriate driver so that it can communicate and control the device.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;Completion of a device driver installation attempt gets recorded as&amp;nbsp;an event ID 20001 message in the &#39;System&#39; event log. The message provides device identification information and&amp;nbsp;a status code for the device installation process.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;span style=&quot;line-height: 18px;&quot;&gt;Devices that install successfully log an Event ID 20001 message with a status code of 0.&lt;/span&gt;&lt;span style=&quot;line-height: 18px;&quot;&gt;&amp;nbsp;To see this event, we can use the below one liner.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Get-WinEvent -ea 0 -FilterHashtable @{Logname=&#39;system&#39;;ID=20001} | select TimeCreated,ID,Message |ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/06/more-artifacts-through-powershell-part-3.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-7378553190378011143</guid><pubDate>Sun, 21 Jun 2015 10:14:00 +0000</pubDate><atom:updated>2015-06-22T23:27:03.285-07:00</atom:updated><title>More artifacts through PowerShell - Part 2</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Quickly identify a login event.&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &lt;i&gt;Get-WinEvent -FilterHashtable @{Logname=&#39;security&#39;;ID=4624} | ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Quickly identify a login event for a particular user.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;i&gt;Get-WinEvent -FilterHashtable @{Logname=&#39;security&#39;;ID=4624} | where {$_.message -like ‘*john*’ } | ft -auto –wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Quickly identify a login event for multiple users.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;i&gt;Get-WinEvent -FilterHashtable @{Logname=&#39;security&#39;;ID=4624} | where {$_.message -like ‘*john*’ -or $_.message -like ‘*jane*’} | ft -auto –wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Quickly identify login events between two dates.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&lt;i&gt;&lt;span class=&quot;s1&quot;&gt;Get-WinEvent -FilterHashtable @{Logname=&#39;security&#39;;ID=4624&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;;StartTime=&quot;5/1/15&quot;;EndTime=&quot;5/31/15&quot;} | ft -auto –wrap&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;Login events for a particular user between two dates.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span class=&quot;s1&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;i&gt;&lt;span class=&quot;s1&quot;&gt;Get-WinEvent -FilterHashtable @{Logname=&#39;security&#39;;ID=4624&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;;StartTime=&quot;5/25/15&quot;;EndTime=&quot;5/30/15&quot;} |&amp;nbsp;&lt;/span&gt;where {$_.message -like ‘*john*’ } | ft -auto –wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Quickly identify error events for previous day.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&lt;i&gt;Get-EventLog -LogName System -EntryType error -After (Get-Date).AddDays(-1) | ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Error events for a specific source such as NETLOGON&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;i&gt; Get-EventLog -LogName System -EntryType error -Source NETLOGON&amp;nbsp;-After (Get-Date).AddDays(-1) | ft -auto -wrap&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;As a reminder, you can export any of these into a text file with the &#39;out-file&#39; option; an example:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;i&gt; Get-EventLog -LogName System -EntryType error -After (Get-Date).AddDays(-1) | ft -auto -wrap | out-file c:\event.txt&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/06/powershell-event-log-one-liners-part-1.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-809075247761305376</guid><pubDate>Sat, 20 Jun 2015 12:07:00 +0000</pubDate><atom:updated>2015-06-22T23:26:23.195-07:00</atom:updated><title>More artifacts through PowerShell - Part 1</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;b&gt;Identify currently logged in user.&lt;/b&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
If the requirement is to get only the logged in user along with the time of login then use &quot;&lt;i&gt;whoami&lt;/i&gt;&#39; or &quot;&lt;i&gt;quser&lt;/i&gt;&quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;To see the privileges assigned for the currently logged in user.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;whoami /priv /fo csv | convertfrom-csv | ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;To identify the user profiles created.&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
User profiles can be checked by looking at the below registry location using Get-ItemProperty CmdLet.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;i style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;Get-ItemProperty hklm:&#39;\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\*&#39;&amp;nbsp;|Select-Object PSChildName, ProfileImagePath | ft -auto -wrap&lt;/i&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;b&gt;To identify users and processes that were started.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;There are multiple commands that can be used but the builtin command &#39;&lt;i&gt;qprocess&lt;/i&gt;&#39; is the optimal one. It is similar to&amp;nbsp;&lt;/span&gt;&lt;i&gt;tasklist&lt;/i&gt;, but produces better output. It shows username, session id, pid, and image name.&lt;br /&gt;
&lt;br /&gt;
Another useful command is &#39;&lt;i&gt;qwinsta&lt;/i&gt;&#39;. This builtin command shows RDP sessions as well.&lt;br /&gt;
&lt;br /&gt;
&#39;&lt;i&gt;quser&lt;/i&gt;&#39; is another useful command; this shows the logged in users, session name, time, etc. This command is extremely useful in a server environment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;b&gt;To see if the user is part of administrator group.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;







&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;net localgroup administrators .This command will show all the users that are part of the group &#39;administrators&#39;.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;i&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;i&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Times, Times New Roman, serif;&quot;&gt;&lt;i&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/06/powershell-user-related-one-liners.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-7346600025609002846</guid><pubDate>Sun, 07 Jun 2015 12:31:00 +0000</pubDate><atom:updated>2015-06-09T02:58:03.842-07:00</atom:updated><title>PowerShell updates</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Have received many questions offline on the use of PowerShell and how we can get the desired artifacts from Windows system. While I have responded to most of those, I haven&#39;t gotten opportunity to update them here. I will try and update them here in a series of posts in the coming days.&lt;br /&gt;
&lt;br /&gt;
The commands and options I will be posting are to be used in addition to the already published commands in the LRUP code and the SANS paper.&lt;br /&gt;
&lt;br /&gt;
LRUP code is available &lt;a href=&quot;https://infosecnirvana.codeplex.com/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2015/06/powershell-updates.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-1766792018822722388</guid><pubDate>Mon, 30 Sep 2013 12:31:00 +0000</pubDate><atom:updated>2013-09-30T05:33:18.893-07:00</atom:updated><title>Howto - Creating a ZIP file of LRUP outputs</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
One of the requests I got was to combine the output of all the text files and compress it so that a single file can be sent by the user from their machine to the IR analyst.&lt;br /&gt;
&lt;br /&gt;
If you want to use an external tool like 7-Zip that can be processed from the command line, it is easy to implement. However, if you want to use an in-built tool or script then there are multiple options.&lt;br /&gt;
&lt;br /&gt;
There is a CodePlex project for this, check out&amp;nbsp;&lt;a href=&quot;http://powershellzip.codeplex.com/&quot;&gt;http://powershellzip.codeplex.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
As an another option, take a look at David Aiken&#39;s &lt;a href=&quot;http://blogs.msdn.com/b/daiken/archive/2007/02/12/compress-files-with-windows-powershell-then-package-a-windows-vista-sidebar-gadget.aspx&quot; target=&quot;_blank&quot;&gt;post&lt;/a&gt;&amp;nbsp;from MSDN.&lt;br /&gt;
&lt;br /&gt;
Relevant portions of the code along with the option to combine the various text files is listed below:&lt;br /&gt;
&lt;br /&gt;
function New-Zip&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;param([string]$zipfilename)&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;set-content $zipfilename (&quot;PK&quot; + [char]5 + [char]6 + (&quot;$([char]0)&quot; * 18))&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;(dir $zipfilename).IsReadOnly = $false&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
new-zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
function Add-Zip&lt;br /&gt;
{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;param([string]$zipfilename)&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;if(-not (test-path($zipfilename)))&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;{&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;set-content $zipfilename (&quot;PK&quot; + [char]5 + [char]6 + (&quot;$([char]0)&quot; * 18))&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;(dir $zipfilename).IsReadOnly = $false&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$shellApplication = new-object -com shell.application&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$zipPackage = $shellApplication.NameSpace($zipfilename)&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;foreach($file in $input)&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;{&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $zipPackage.CopyHere($file.FullName)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Start-sleep -milliseconds 500&lt;br /&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
gci $UserDirectory\desktop\$CompName-$User-$Date-Level1.html | add-Zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
gci $UserDirectory\desktop\$CompName-$User-$Date-HostsFile.txt | add-Zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
gci $UserDirectory\desktop\$CompName-$User-$Date-OpenFiles.txt | add-Zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
gci $UserDirectory\desktop\$CompName-$User-$Date-AuditPolicy.txt | add-Zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
gci $UserDirectory\desktop\$CompName-$User-$Date-FirewallConfig.txt | add-Zip $UserDirectory\desktop\$CompName-$User-$Date.zip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Clean-up routine&lt;br /&gt;
&lt;br /&gt;
rm $UserDirectory\desktop\$CompName-$User-$Date-Level*.html&lt;br /&gt;
&lt;br /&gt;
rm $UserDirectory\desktop\$CompName-$User-$Date-*.txt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2013/09/howto-creating-zip-file-of-lrup-outputs.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-2358991972011477591</guid><pubDate>Sat, 31 Aug 2013 05:29:00 +0000</pubDate><atom:updated>2013-08-30T22:29:05.161-07:00</atom:updated><title>LRUP Code published</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Code used in the &lt;a href=&quot;http://www.sans.org/reading-room/whitepapers/forensics/live-response-powershell-34302&quot; target=&quot;_blank&quot;&gt;paper&lt;/a&gt; is now available from the CodePlex site.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://infosecnirvana.codeplex.com/&quot;&gt;https://infosecnirvana.codeplex.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
This is a version 2.0, which is optimized for PowerShell V2. All new updates will be available at the CodePlex site from now on.&lt;br /&gt;
&lt;br /&gt;
Comments and suggestions can be posted here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2013/08/lrup-code-published.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-6987868996861316951</guid><pubDate>Sat, 24 Aug 2013 05:25:00 +0000</pubDate><atom:updated>2013-08-23T22:25:06.108-07:00</atom:updated><title>SANS Gold paper on PowerShell</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
I have been working on a paper for the SANS Gold certification. The topic I chose was Live Response using PowerShell.&lt;br /&gt;
&lt;br /&gt;
It was a great experience writing it and learning a great deal of &amp;nbsp;stuff on Windows operating system and PowerShell.&lt;br /&gt;
&lt;br /&gt;
Finally, early this week I got the confirmation from SANS that it has been approved and published.&lt;br /&gt;
&lt;br /&gt;
Paper is available on &lt;a href=&quot;http://www.sans.org/reading-room&quot; target=&quot;_blank&quot;&gt;SANS reading room&lt;/a&gt;&amp;nbsp;web site and direct download is available &lt;a href=&quot;http://www.sans.org/reading-room/whitepapers/forensics/live-response-powershell-34302&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Look for more details on the code and other developments in later posts.&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2013/08/sans-gold-paper-on-powershell.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-6373134823452186031</guid><pubDate>Sun, 28 Jul 2013 01:48:00 +0000</pubDate><atom:updated>2013-07-27T18:48:02.015-07:00</atom:updated><title>Programming knowledge in the field of DFIR</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Harlan recently blogged about programming knowledge in DFIR field, link is &lt;a href=&quot;http://windowsir.blogspot.in/2013/07/programming-and-dfir.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;. It made me realize my own experience in scripting and how it helped gain more knowledge.&lt;br /&gt;
&lt;br /&gt;
I started learning Unix shell scripting when I was working as a system administrator. For sysadmins it is an invaluable tool to automate both simple and complex tasks. Later, as a network administrator, scripting knowledge came handy in automating tasks such as device monitoring using SNMP, configuration &amp;nbsp;backup, making simple configuration changes, log analysis, etc.&lt;br /&gt;
&lt;br /&gt;
When I moved to the DFIR field many years ago, scripting knowledge came handy particularly in log analysis. When you have month&#39;s of apache, proxy and firewall logs to sift through, knowledge of scripting becomes extremely handy. Other areas it is useful include PCAP analysis, Snort device management, manipulating outputs from scanning tools such as NMAP, getting system statistics, doing quick analysis of a system during or after an incident, forensic analysis, etc.&lt;br /&gt;
&lt;br /&gt;
In order to make a script or program to work, you need more understanding of the system and in that process you seek more knowledge. In my view it helps you immensely in any area of work as technology professionals. As Harlan pointed out, you don&#39;t need to be an expert programmer, you just need to know the fundamentals and an aptitude for learning. With that basic knowledge, when there is a need to do something that is not currently supported or offered by existing tools you can create your own steps to achieve that task. It may not look pretty in the eyes of an expert programmer but as long as it can satisfy your requirement, you are good to go.&lt;br /&gt;
&lt;br /&gt;
If you are a Unix person, start with shell scripting and then learn Perl and/or Python. If you are a Windows person, PowerShell is an extremely useful tool or scripting language to automate multitude of tasks. It is getting more popular as Microsoft bundles it with most of their new products. If you are from a Unix shell scripting background, it would be real easy to learn PowerShell as they use the similar concepts. Even otherwise, it&#39;s a simple language to learn.&lt;br /&gt;
&lt;br /&gt;
As scripting and automation is a subject of immense interest to me, I started learning PowerShell a while ago. I hope to show some of the usefulness of PowerShell in coming weeks.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2013/07/programming-knowledge-in-field-of-dfir.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-2489026598855077558</guid><pubDate>Sun, 12 Feb 2012 07:16:00 +0000</pubDate><atom:updated>2012-02-11T23:16:06.887-08:00</atom:updated><title>New NIST draft document - Computer Security Incident Handling Guide</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;NIST released a new draft document on Computer Security Incident Handling. This is the second version of the original document that was released in 2008.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;This publication seeks to assist organizations in mitigating the risks from computer security incidents by providing practical guidelines on responding to incidents effectively and efficiently. It includes guidelines on establishing an effective incident response program, but the primary focus of the document is detecting, analyzing, prioritizing, and handling incidents.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;It is a great reference document for folks trying to implement a new program and for folks to tweak their existing program.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;Here is a list of major recommendations:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;ul style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; text-align: left;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations must create, provision, and operate a formal incident response capability. Federal law requires Federal agencies to report incidents to the United States Computer Emergency Readiness Team (US-CERT) office within the Department of Homeland Security.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations should reduce the frequency of incidents by effectively securing networks, systems, and applications.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations should document their guidelines for interactions with other organizations regarding incidents.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations should prepare generally to handle any type of incident and more specifically to handle common incident types.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations should create written guidelines for prioritizing incidents.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: 11pt;&quot;&gt;Organizations should use the lessons learned process to gain value from incidents.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;The document is available from the following link&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;&lt;a href=&quot;https://email.accenture.com/owa/redir.aspx?C=Q7-__nSUBUOUCn8ft4AwF6AZ1K-Lu84InWSFKd5qgfecHyblPRq2mAuSgdiVi5HHJMlbOwGLPjs.&amp;amp;URL=http%3a%2f%2fcsrc.nist.gov%2fpublications%2fdrafts%2f800-61-rev2%2fdraft-sp800-61rev2.pdf&quot; target=&quot;_blank&quot;&gt;http://csrc.nist.gov/publications/drafts/800-61-rev2/draft-sp800-61rev2.pdf&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: &#39;Segoe UI&#39;, Helvetica, Arial, sans-serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: -webkit-auto;&quot;&gt;
&lt;span style=&quot;font-family: Calibri, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;NIST requests comments on this document by&amp;nbsp;March 16th, 2012. If you would like to submit comments, submit it to &quot;&lt;span style=&quot;color: windowtext;&quot;&gt;800-61rev2-comments@nist.gov&quot;&lt;/span&gt;&amp;nbsp;with &quot;Comments SP 800-61&quot; in the subject line.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2012/02/new-nist-draft-document-computer.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-6291953453002157524</guid><pubDate>Sun, 29 Jan 2012 10:47:00 +0000</pubDate><atom:updated>2012-01-29T02:47:48.704-08:00</atom:updated><title>Registry Decoder - A new registry analysis tool</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
Registry Decoder was developed with the purpose of providing a single tool for the acquisition, analysis, and reporting of registry contents.&lt;br /&gt;
&lt;br /&gt;
It is much similar to Harlan&#39;s RegRipper. It can perform the analysis on the live system as well as the saved hive files. To acquire the currently in-use registry files, Registry Decoder creates a System Restore Point on the target machine. This ‘freezes’ and generates a read-only backup of the current registry files. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the current version, the offline component is able to process a number of evidence types including:&lt;br /&gt;
&lt;br /&gt;
1. Individual registry files&lt;br /&gt;
2. Full disk images&lt;br /&gt;
3. Partition images&lt;br /&gt;
4. Databases created by the online acquisition component of Registry Decoder&lt;br /&gt;
&lt;br /&gt;
The analysis tasks it performs include:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Hive Viewing&lt;br /&gt;
2. Hive Searching&lt;br /&gt;
3. Plugins. Currently has 30 plugins&lt;br /&gt;
4. Hive Differencing to find the&amp;nbsp;differences between two registry hives&lt;br /&gt;
5. Reporting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The online acquisition component can be accessed at: &lt;a href=&quot;http://code.google.com/p/regdecoderlive/&quot;&gt;http://code.google.com/p/regdecoderlive/&lt;/a&gt; and the offline analysis component accessed at: &lt;a href=&quot;http://code.google.com/p/registrydecoder/&quot;&gt;http://code.google.com/p/registrydecoder/&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Some of the screen shots from my system are below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhy1U1yi1GG2nYcG8sKYRu9p1zdqMojVXsExstsEv35AbXvU8ArXW7kir3cGzakMpDx-UeERCzcn9oIVuyERhL37wciU3SHJCLZ_V7tnpZ-gYB6UB6pPubkhjpbPVhOH800-Ez8ahUoK8M/s1600/Capture+reg+decoder6.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;242&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhy1U1yi1GG2nYcG8sKYRu9p1zdqMojVXsExstsEv35AbXvU8ArXW7kir3cGzakMpDx-UeERCzcn9oIVuyERhL37wciU3SHJCLZ_V7tnpZ-gYB6UB6pPubkhjpbPVhOH800-Ez8ahUoK8M/s320/Capture+reg+decoder6.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEio-e0by4X13MlLr8MsmYqA-D2TA2zqSg-wS4-GXlbQQeNEiGO1x2B-LhXnyejeoS3wkIxmu3xLN9mP70iwu0ulHMqB4W2X0mj26trQlBEMOhpG1rzxhkzOfLxYUC9LCoI2r7ELEqo3Ff0/s1600/Capture+reg+decoder5.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;242&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEio-e0by4X13MlLr8MsmYqA-D2TA2zqSg-wS4-GXlbQQeNEiGO1x2B-LhXnyejeoS3wkIxmu3xLN9mP70iwu0ulHMqB4W2X0mj26trQlBEMOhpG1rzxhkzOfLxYUC9LCoI2r7ELEqo3Ff0/s320/Capture+reg+decoder5.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgB90CNulX03IAxQKc2puwfLVqtPb0o52hFWbulDtWWTACh8EVjB4hNVXGS_RhoV60I_LunysMLbrPXCHRnDe_eHGgE1gi4-jxPCfFu7WP6qGnSm4a5BYsKo4C082-Tmoyl7Fy4JEJVt8g/s1600/Capture+reg+decoder4.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;242&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgB90CNulX03IAxQKc2puwfLVqtPb0o52hFWbulDtWWTACh8EVjB4hNVXGS_RhoV60I_LunysMLbrPXCHRnDe_eHGgE1gi4-jxPCfFu7WP6qGnSm4a5BYsKo4C082-Tmoyl7Fy4JEJVt8g/s320/Capture+reg+decoder4.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBQd51Q4Odnh3ZAiTcYfMrtJCzKgOtm1IT-1vgHCwAA4lZ4YBeVGCPNzDTlS12n75DcL8q3smtPNINPrzxy-Yb9px54cEax_t0azYUf6QrJS2taP73xPD316ng8jUKCoHQ6oC8Sk2AbtE/s1600/Capture+reg+decoder3.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;193&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBQd51Q4Odnh3ZAiTcYfMrtJCzKgOtm1IT-1vgHCwAA4lZ4YBeVGCPNzDTlS12n75DcL8q3smtPNINPrzxy-Yb9px54cEax_t0azYUf6QrJS2taP73xPD316ng8jUKCoHQ6oC8Sk2AbtE/s320/Capture+reg+decoder3.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2012/01/registry-decoder-new-registry-analysis.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhy1U1yi1GG2nYcG8sKYRu9p1zdqMojVXsExstsEv35AbXvU8ArXW7kir3cGzakMpDx-UeERCzcn9oIVuyERhL37wciU3SHJCLZ_V7tnpZ-gYB6UB6pPubkhjpbPVhOH800-Ez8ahUoK8M/s72-c/Capture+reg+decoder6.JPG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-1933853329891036462</guid><pubDate>Sun, 04 Dec 2011 08:28:00 +0000</pubDate><atom:updated>2011-12-04T00:53:08.845-08:00</atom:updated><title>Club Penguin data loss</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Club Penguin is an online gaming site that offers a virtual gaming world for kids. It also offers the players an option to kind of social network, which &amp;nbsp;made it very popular among the kids.&lt;br /&gt;
&lt;br /&gt;
Dataloss DB recently published a data loss involving this gaming site, where 309 usernames, e-mail addresses, passwords and IP dumped on the pastebin site by hacker(s).&lt;br /&gt;
&lt;br /&gt;
The links to the dataloss db and the pastebin sites are below. If your kids have accounts in Club Penguin, I highly recommend changing the passwords immediately.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://datalossdb.org/incidents/5050-309-usernames-e-mail-addresses-passwords-and-ip-dumped-on-web-by-hacker&quot;&gt;http://datalossdb.org/incidents/5050-309-usernames-e-mail-addresses-passwords-and-ip-dumped-on-web-by-hacker&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://pastebin.com/Bzxpc1RF&quot;&gt;http://pastebin.com/Bzxpc1RF&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2011/12/club-penguin-data-loss.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-7855455099170010606</guid><pubDate>Sun, 04 Dec 2011 01:16:00 +0000</pubDate><atom:updated>2011-12-11T01:49:56.880-08:00</atom:updated><title>InfoSec - Weekly Roundup</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Mandiant released a new version of their popular memory analysis tool, Redline. Redline accelerates the process of triaging hosts suspected of being compromised or infected while supporting in-depth live memory analysis. Read the related blog post below&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;https://blog.mandiant.com/archives/1996&quot;&gt;https://blog.mandiant.com/archives/1996&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;NSRL database is being updated. &quot;The National Software Reference Library (NSRL) is designed to collect software from various sources and incorporate file profiles computed from this software into a Reference Data Set (RDS) of information. The RDS can be used by law enforcement, government, and industry organizations to review files on a computer by matching file profiles in the RDS. This will help alleviate much of the effort involved in determining which files are important as evidence on computers or file systems that have been seized as part of criminal investigations. Link for the NSRL database is below.&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.nsrl.nist.gov/&quot;&gt;http://www.nsrl.nist.gov/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;FTC recently reported that Facebook has agreed to settle charges that it deceived consumers by telling them they could keep their information on Facebook private, and then repeatedly allowing it to be shared and made public. The proposed settlement requires Facebook to take several steps to make sure it lives up to its promises in the future, including giving consumers clear and prominent notice and obtaining consumers&#39; express consent before their information is shared beyond the privacy settings they have established. Check the below link from FTC for more information.&lt;/li&gt;
&lt;/ul&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.ftc.gov/opa/2011/11/privacysettlement.shtm&quot;&gt;http://www.ftc.gov/opa/2011/11/privacysettlement.shtm&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;The big risk item people are talking about is the Carrier IQ key logging software installed on many phones, which allows the carriers to gather many details of you browsing habits. More information is available at the below links.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;https://threatpost.com/en_us/blogs/demo-carrier-iq-agent-android-120111&quot;&gt;https://threatpost.com/en_us/blogs/demo-carrier-iq-agent-android-120111&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://allthingsd.com/20111201/carrier-iq-speaks-our-software-monitors-service-messages-ignores-other-data/?mod=snippet&quot;&gt;http://allthingsd.com/20111201/carrier-iq-speaks-our-software-monitors-service-messages-ignores-other-data/?mod=snippet&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2011/12/weekly-infosec-roundup.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-1610979452278943443</guid><pubDate>Sun, 30 Oct 2011 07:03:00 +0000</pubDate><atom:updated>2011-10-30T00:03:55.306-07:00</atom:updated><title>Impact of malware - Scientific American magazine article</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Scientific&amp;nbsp;American magazine published an article on the impact of malware and what we can do about it.&lt;br /&gt;
&lt;br /&gt;
Here are some of the comments from the article.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-small;&quot;&gt;&quot;We don’t actually know how to scan for malware. We can’t stop it, because we can’t find it. We can’t always recognize it even if we are looking right at it.&quot;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-small;&quot;&gt;&quot;Like a thriller character who discovers he doesn’t know whom to trust, cybersecurity experts start running through the options.&quot;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
This is a very interesting article and if nothing else, it helps spread awareness. I have reported in my blog multiple times how the main stream media is covering the new way of attacks and privacy issues. Now, other types of media started covering these issues as well. The more aware general Internet users about these issues, better prepared they would be.&lt;br /&gt;
&lt;br /&gt;
The article link is below:
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.scientificamerican.com/article.cfm?id=a-cybersecurity-nightmare&quot; style=&quot;font-family: georgia, times, serif; line-height: 24px;&quot;&gt;http://www.scientificamerican.com/article.cfm?id=a-cybersecurity-nightmare&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2011/10/impact-of-malware-scientific-american.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-5631922369710371465</guid><pubDate>Wed, 26 Oct 2011 10:20:00 +0000</pubDate><atom:updated>2011-10-26T03:20:25.302-07:00</atom:updated><title>Vulnerable web applications</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;







&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:DocumentProperties&gt;
  &lt;o:Revision&gt;0&lt;/o:Revision&gt;
  &lt;o:TotalTime&gt;0&lt;/o:TotalTime&gt;
  &lt;o:Pages&gt;1&lt;/o:Pages&gt;
  &lt;o:Words&gt;169&lt;/o:Words&gt;
  &lt;o:Characters&gt;965&lt;/o:Characters&gt;
  &lt;o:Company&gt;Home&lt;/o:Company&gt;
  &lt;o:Lines&gt;8&lt;/o:Lines&gt;
  &lt;o:Paragraphs&gt;2&lt;/o:Paragraphs&gt;
  &lt;o:CharactersWithSpaces&gt;1132&lt;/o:CharactersWithSpaces&gt;
  &lt;o:Version&gt;14.0&lt;/o:Version&gt;
 &lt;/o:DocumentProperties&gt;
&lt;/xml&gt;&lt;![endif]--&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;JA&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
  DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;276&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;

&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
table.MsoNormalTable
 {mso-style-name:&quot;Table Normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
 mso-para-margin-top:0cm;
 mso-para-margin-right:0cm;
 mso-para-margin-bottom:10.0pt;
 mso-para-margin-left:0cm;
 line-height:115%;
 mso-pagination:widow-orphan;
 font-size:11.0pt;
 font-family:Calibri;
 mso-ascii-font-family:Calibri;
 mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri;
 mso-hansi-theme-font:minor-latin;}
&lt;/style&gt;
&lt;![endif]--&gt;



&lt;!--StartFragment--&gt;

&lt;/div&gt;
&lt;div class=&quot;MsoPlainText&quot; style=&quot;text-align: left;&quot;&gt;
One of the readers asked about vulnerable web applications pre configured for&amp;nbsp;research&amp;nbsp;and testing purpose. Here is the list I have used in the past:&lt;/div&gt;
&lt;br /&gt;&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Moth&amp;nbsp;&lt;a href=&quot;http://www.bonsai-sec.com/en/research/moth.php&quot;&gt;http://www.bonsai-sec.com/en/research/moth.php&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Stanford SecuriBench &amp;nbsp;&lt;a href=&quot;http://suif.stanford.edu/~livshits/securibench/&quot;&gt;http://suif.stanford.edu/~livshits/securibench/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;span&gt;OWASP&amp;nbsp;&lt;/span&gt;WebGoat &amp;nbsp;&lt;a href=&quot;http://www.owasp.org/index.php/Category:OWASP_WebGoat_Project&quot;&gt;http://www.owasp.org/index.php/Category:OWASP_WebGoat_Project&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Mutillidae &amp;nbsp;&lt;a href=&quot;http://www.irongeek.com/i.php?page=mutillidae/mutillidae-deliberately-vulnerable-php-owasp-top-10&quot;&gt;http://www.irongeek.com/i.php?page=mutillidae/mutillidae-deliberately-vulnerable-php-owasp-top-10&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;MsoPlainText&quot; style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;!--EndFragment--&gt;&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;</description><link>http://infosecnirvana.blogspot.com/2011/10/vulnerable-web-applications.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-1318605516383103</guid><pubDate>Sun, 09 Oct 2011 02:33:00 +0000</pubDate><atom:updated>2011-10-08T19:33:22.333-07:00</atom:updated><title>Consumer reports - Companies to spend $130 billion on cybersecurity in 2011</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
A recent new item in Consumer Reports caught my eye.&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&quot;U.S. companies will spend more than $130 billion dealing with data breaches this year, according to a study by the cybersecurity research firm the Ponemon Institute.&quot;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&lt;br /&gt;
Over the last few years, there has been a steady increase in cyber attacks and breaches. Organizations have started to admit the fact that they are being attacked on a regular basis. Newspapers carry regular news items that show how vulnerable organizations and&amp;nbsp;individuals are to such attacks.&lt;br /&gt;
&lt;br /&gt;
So, apart from the people who did the bad thing, who else benefits from this?&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
Obviously, it benefits a whole group of people who helps these companies and individuals do the clean-up work. From the people specializing in the corporate communications, people involved in providing legal advice, people involved in forensic investigations, people involved in fighting these cases in court, and people involved in making sure that such incidents don&#39;t happen again.&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
Now, for&amp;nbsp;folks looking for jobs and looking to enter these fields, it is a great opportunity to master these skills.&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;193&quot;&gt;
Some of the hot skills, companies in US and other parts of the world looking for are:&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;E-Discovery&lt;/li&gt;
&lt;li&gt;Forensic investigation&lt;/li&gt;
&lt;li&gt;Incident Response&lt;/li&gt;
&lt;li&gt;Malware Analysis&lt;/li&gt;
&lt;li&gt;Incident Monitoring&lt;/li&gt;
&lt;li&gt;Security Operations&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;194&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div closure_uid_slbnpj=&quot;195&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/10/consumer-reports-companies-to-spend-130.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-8331812271679112826</guid><pubDate>Tue, 27 Sep 2011 05:14:00 +0000</pubDate><atom:updated>2011-09-26T22:14:51.319-07:00</atom:updated><title>Risk Management - two new standards</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;strong&gt;ISO 27005:2011&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
The newly released international information security risk management standard, is now available for everyone. &lt;br /&gt;
&lt;br /&gt;
ISO 27005:2011 supports the general concepts specified in ISO/IEC 27001, it is designed to assist the satisfactory implementation of information security based on a risk management approach. &lt;br /&gt;
The standard is now fully aligned with the International Standard for risk management, ISO&amp;nbsp;31000. ISO 31000 provides generic guidelines for the design, implementation and maintenance of risk management processes throughout an organization, generally known as enterprise risk management.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ISO 27005:2011 ISRM, can be downloaded&amp;nbsp;from the IT Governance web site. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.itgovernance.co.uk/products/1852&quot;&gt;www.itgovernance.co.uk/products/1852&lt;/a&gt; . &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;NIST Special Publication 800-30&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
NIST relesed a draft guide for conducting risk assessments.&lt;br /&gt;
&lt;br /&gt;
&quot;&lt;em&gt;The purpose of Special Publication 800-30 is to provide guidance for conducting risk assessments of federal information systems and organizations. Risk assessments, carried out at all three tiers in the risk management hierarchy, are part of an overall risk management process—providing senior leaders/executives with the information needed to determine appropriate courses of action to take&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;in response to identified risks. In particular, this document provides practitioners with practical &lt;/em&gt;&lt;br /&gt;
&lt;em&gt;guidance for carrying out each of the three steps in the risk assessment process (i.e., prepare for the assessment, conduct the assessment, and maintain the assessment) and how risk assessments and other organizational risk management processes complement and inform each other&lt;/em&gt;.&quot;&lt;br /&gt;
&lt;br /&gt;
This standard is in a public comment stage, all are welcome to comment on this standard.&lt;br /&gt;
&lt;br /&gt;
The standard can be downloaded from the below NIST web site.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://csrc.nist.gov/publications/drafts/800-30-rev1/SP800-30-Rev1-ipd.pdf&quot;&gt;http://csrc.nist.gov/publications/drafts/800-30-rev1/SP800-30-Rev1-ipd.pdf&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&amp;nbsp;&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/09/risk-management-two-new-standards.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-8587873107792429124</guid><pubDate>Fri, 02 Sep 2011 00:01:00 +0000</pubDate><atom:updated>2011-09-01T17:01:27.246-07:00</atom:updated><title>New PCI Document - Identifying and Detecting Security Breaches</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div closure_uid_slbnpj=&quot;82&quot;&gt;
PCI council has published a new document titiled &quot;Identifying and Detecting Security Breaches&quot;. The topics include:&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;82&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Common Vulnerabilities and Malware&lt;/li&gt;
&lt;li&gt;Signs of an Incident&lt;/li&gt;
&lt;li&gt;How to Detect a Security Incident&lt;/li&gt;
&lt;li&gt;Implementing and Reviewing Logs&lt;/li&gt;
&lt;li&gt;Logs and PCI DSS Compliance&lt;/li&gt;
&lt;li&gt;Basics of Incident Management&lt;/li&gt;
&lt;li&gt;Top Challenges&lt;/li&gt;
&lt;li closure_uid_slbnpj=&quot;99&quot;&gt;Visa’s “What To Do If Compromised” Procedures&lt;/li&gt;
&lt;/ul&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
The document link is below:&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
&lt;a href=&quot;http://usa.visa.com/download/merchants/webinar-identifying-and-detecting-breaches-08172011.pdf?Aug202011&quot;&gt;http://usa.visa.com/download/merchants/webinar-identifying-and-detecting-breaches-08172011.pdf?Aug202011&lt;/a&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;99&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/09/new-pci-document-identifying-and.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-7169522206525078944</guid><pubDate>Tue, 30 Aug 2011 23:11:00 +0000</pubDate><atom:updated>2011-08-30T16:11:17.519-07:00</atom:updated><title>Google Code University - Learn Application Security fundamentals</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
Google Code University publishes many online materials, where you can learn about programming and application security. You can find topics in the area of programming languages, web programming, web security,&amp;nbsp;databases, Linux, etc.&amp;nbsp;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
They have also released many tools in this area, the latest being web application named Gruyere.&lt;strong&gt; &lt;/strong&gt;This is similar to OWASP WebGoat or Mutillidae.&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
The tool shows&amp;nbsp; how web application vulnerabilities can be exploited and how to defend against these attacks. Some of the vulnerabilities that you will be exposed to include Cross-site scripting (XSS), Cross-Site Request Forgery (XSRF), Cookie Manipulation, Cross Site Script Inclusion (XSSI), Path Traversal, Denial of Service, Configuration Vulnerabilities, and specific vulnerabilities affecting AJAX.&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
It is a great tool to learn application security.&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
Links:&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
Google Code University :&amp;nbsp; &lt;a href=&quot;http://code.google.com/edu/&quot;&gt;http://code.google.com/edu/&lt;/a&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
Gruyere web application : &lt;a href=&quot;http://google-gruyere.appspot.com/#0__hackers&quot;&gt;http://google-gruyere.appspot.com/#0__hackers&lt;/a&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;169&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/08/google-code-university-learn.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-4167080394748844731</guid><pubDate>Mon, 29 Aug 2011 23:34:00 +0000</pubDate><atom:updated>2011-08-30T16:02:01.117-07:00</atom:updated><title>A Guide to Facebook Security</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div closure_uid_slbnpj=&quot;112&quot;&gt;
&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;122&quot;&gt;
Last week Facebook released a document titled &quot;A Guide to Facebook Security&quot;. &lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;122&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;122&quot;&gt;
It is a must read for every facebook user. It lists some essential tools that helps protect your account against various threats.&lt;/div&gt;
&lt;br /&gt;
&lt;div closure_uid_slbnpj=&quot;112&quot;&gt;
Some of the items detailed in the document include: &lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;145&quot;&gt;
&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;114&quot;&gt;
How to protect your account&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;120&quot;&gt;
How to avoid the scammers&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;How to enable advanced security settings&lt;/li&gt;
&lt;li&gt;How to recover a hacked&amp;nbsp;account&lt;/li&gt;
&lt;li&gt;How to stop imposters&lt;/li&gt;
&lt;/ul&gt;
&lt;div closure_uid_slbnpj=&quot;148&quot; style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;151&quot; style=&quot;text-align: left;&quot;&gt;
Here are the top tips to protect your accounts.&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;150&quot;&gt;
Only Friend people you know. &lt;/div&gt;
&lt;/li&gt;
&lt;li closure_uid_slbnpj=&quot;167&quot;&gt;&lt;div closure_uid_slbnpj=&quot;149&quot;&gt;
Create a good password and use it only for Facebook. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;152&quot;&gt;
Don’t share your password. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;153&quot;&gt;
Change your password on a regular basis. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;154&quot;&gt;
Share your personal information only with people and companies that need it. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;155&quot;&gt;
Log into Facebook only ONCE each session. If it looks like Facebook is asking you to log in a second time, skip the links and directly type www.facebook.com into your browser address bar. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;156&quot;&gt;
Use a one-time password when using someone else’s computer. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;157&quot;&gt;
Log out of Facebook after using someone else’s computer. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;158&quot;&gt;
Use secure browsing whenever possible. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;159&quot;&gt;
Only download Apps from sites you trust. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;160&quot;&gt;
Keep your anti-virus software updated. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;161&quot;&gt;
Keep your browser and other applications up to date. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;162&quot;&gt;
Don’t paste script (code) in your browser address bar. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;163&quot;&gt;
Use browser add-ons like Web of Trust and Firefox’s NoScript to keep your account from being hijacked. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;164&quot;&gt;
Beware of “goofy” posts from anyone—even Friends. If it looks like something your Friend wouldn’t post, don’t click on it. &lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div closure_uid_slbnpj=&quot;165&quot;&gt;
Scammers might hack your Friends’ accounts and send links from their accounts. Beware of enticing links coming from your Friends.&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div closure_uid_slbnpj=&quot;166&quot; style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div closure_uid_slbnpj=&quot;168&quot;&gt;
The document link is below:&lt;/div&gt;
&lt;br /&gt;
&lt;a href=&quot;https://www.facebook.com/safety/attachment/Guide%20to%20Facebook%20Security.pdf&quot;&gt;https://www.facebook.com/safety/attachment/Guide%20to%20Facebook%20Security.pdf&lt;/a&gt;&lt;/div&gt;
&lt;div closure_uid_slbnpj=&quot;146&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/08/guide-to-facebook-security.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-7624087344128781368</guid><pubDate>Sun, 19 Jun 2011 01:35:00 +0000</pubDate><atom:updated>2011-06-18T18:35:39.195-07:00</atom:updated><title>PCI - Information supplement on virtualization</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
PCI Council has released a new information&amp;nbsp;supplement&amp;nbsp;on virtualization. This is&amp;nbsp;definitive&amp;nbsp;guide for organizations looking to implement virtualization in their card holder data environment. Some of the highlights from the document:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are four simple principles associated with the use of virtualization in cardholder data&lt;br /&gt;
environments:&lt;br /&gt;
a. If virtualization technologies are used in a cardholder data environment, PCI DSS&lt;br /&gt;
requirements apply to those virtualization technologies.&lt;br /&gt;
b. Virtualization technology introduces new risks that may not be relevant to other technologies,&lt;br /&gt;
and that must be assessed when adopting virtualization in cardholder data environments.&lt;br /&gt;
c. Implementations of virtual technologies can vary greatly, and entities will need to perform a&lt;br /&gt;
thorough discovery to identify and document the unique characteristics of their particular&lt;br /&gt;
virtualized implementation, including all interactions with payment transaction processes and&lt;br /&gt;
payment card data.&lt;br /&gt;
d. There is no one-size-fits-all method or solution to configure virtualized environments to meet&lt;br /&gt;
PCI DSS requirements. Specific controls and procedures will vary for each environment,&lt;br /&gt;
according to how virtualization is used and implemented.&lt;br /&gt;
&lt;br /&gt;
The document lists the general recommendations as follows:&lt;br /&gt;
&lt;br /&gt;
General Recommendations&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Evaluate risks associated with virtual technologies&lt;/li&gt;
&lt;li&gt;Understand impact of virtualization to scope of the CDE&lt;/li&gt;
&lt;li&gt;Restrict physical access&lt;/li&gt;
&lt;li&gt;Implement defense in depth&lt;/li&gt;
&lt;li&gt;Isolate security functions&lt;/li&gt;
&lt;li&gt;Enforce least privilege and separation of duties&lt;/li&gt;
&lt;li&gt;Evaluate hypervisor technologies&lt;/li&gt;
&lt;li&gt;Harden the hypervisor&lt;/li&gt;
&lt;li&gt;Harden virtual machines and other components&lt;/li&gt;
&lt;li&gt;Define appropriate use of management tools&lt;/li&gt;
&lt;li&gt;Recognize the dynamic nature of VM’s&lt;/li&gt;
&lt;li&gt;Evaluate virtualized network security features&lt;/li&gt;
&lt;li&gt;Clearly define all hosted virtual services&lt;/li&gt;
&lt;li&gt;Understand the technology&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
The document can be downloaded from &lt;a href=&quot;https://www.pcisecuritystandards.org/documents/Rth87Wp/Virtualization_InfoSupp_v2.pdf&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/06/pci-information-supplement-on.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7436862332086008947.post-4307025335616302457</guid><pubDate>Sun, 19 Jun 2011 00:45:00 +0000</pubDate><atom:updated>2011-06-18T17:45:27.081-07:00</atom:updated><title>Another wave of attacks and breaches</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;title&gt;&lt;/title&gt;


&lt;style type=&quot;text/css&quot;&gt;
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Times}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Times; min-height: 14.0px}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Arial; min-height: 15.0px}
p.p4 {margin: 0.0px 0.0px 12.0px 0.0px; font: 12.0px Times; min-height: 14.0px}
span.s1 {font: 12.0px Helvetica}
&lt;/style&gt;


&lt;br /&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;Back in April, I wrote about a wave of attacks and breaches (you can read it &lt;a href=&quot;http://infosecnirvana.blogspot.com/2011/04/march-month-of-attacks-and-breaches.html&quot;&gt;here&lt;/a&gt;). This month we are seeing a whole new wave of attacks and breaches, some of which include Citigroup, Sony, IMF, Lockheed Martin, etc.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p2&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p2&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;2011&amp;nbsp;definitely&amp;nbsp;brought many high profile breaches, one interesting development is that, these breaches not only benefit the adversaries but people who are involved in the investigations as well. WSJ&amp;nbsp;reports that an “industry of experts”—from lawyers to forensic investigators—have emerged to help companies deal with the painful job of informing customers that their data has been hacked.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;span class=&quot;s1&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;We also started to see the re-emergence of so called hacking groups. Some of the new groups such as&lt;/span&gt; &lt;/span&gt;Anonymous and LulzSec, are reported to be active participants. This is definitely a concern for information security practitioners as suddenly we have a much stronger and a determined opponent to deal with.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;US lawmakers are getting busy as well. Congresswoman Mary Bono Mac, Chairman of the House Subcommittee on Commerce, Manufacturing and Trade,early this week released a discussion draft of the Secure and Fortify Data Act (SAFE Data Act), which establishes uniform national standards for data security and data breach notification.&amp;nbsp;A key feature of the SAFE Data Act requires notification to the FTC and consumers within 48 hours of the time that a breach has been secured and scope of the breach assessed.&amp;nbsp; The FTC would also be given the authority to levy civil penalties if companies or entities fail to respond in a timely and responsible manner.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p3&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;So, what can we as corporate information security professionals do? As I have mentioned in this blog many times, there is nothing new to be done here, follow the simple steps and go back to the basics - identify what and where your sensitive data is, apply minimum controls to thwart simple attacks, monitor the sensitive information, both at the asset level and network level and finally keep up with the new threats and learn how to defend against these new threats.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p3&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;Sophistication of information threats are only going to increase, adversaries looking to steal sensitive information are only going to increase, and the market for such sensitive information are only going to increase. Better preparation and bringing in capabilities to defend, and recover from these attacks should be primary concern for information security departments. Many organizations concentrate on a compliance and check-list centric methodology, which will only lead to more such attacks and breaches. The time has come for organizations to develop capabilities and talent within the organization.&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: small;&quot;&gt;States and local governments also have a bigger role to play. Organizations need help from government agencies in the form of intelligence and investigations, and more importantly working with foreign&amp;nbsp;governments&amp;nbsp;in identifying and containing the threats and threat agents. Announcement such as &lt;a href=&quot;http://www.washingtonpost.com/national/major-internet-service-providers-cooperating-with-nsa-on-monitoring-traffic/2011/06/07/AG2dukXH_story.html&quot;&gt;this&lt;/a&gt; from NSA is&amp;nbsp;promising and they should start developing tools and processes to share&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;intelligence with private sector as well.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p3&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p4&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://infosecnirvana.blogspot.com/2011/06/another-wave-of-attacks-and-breaches.html</link><author>noreply@blogger.com (InfoSecNirvana)</author><thr:total>0</thr:total></item></channel></rss>