<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>M-unition &#187; malware analysis</title>
	<atom:link href="http://blog.mandiant.com/archives/tag/malware-analysis/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.mandiant.com</link>
	<description>The Ammunition You Need to Find Evil and Solve Crime</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:49:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What the fxsst?</title>
		<link>https://blog.mandiant.com/archives/1786?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fxsst</link>
		<comments>https://blog.mandiant.com/archives/1786#comments</comments>
		<pubDate>Fri, 03 Jun 2011 16:51:09 +0000</pubDate>
		<dc:creator>Nick Harbour</dc:creator>
				<category><![CDATA[The Whiteboard]]></category>
		<category><![CDATA[fxsst.dll]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[ntshrui.dll]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=1786</guid>
		<description><![CDATA[<p>If you deal with the same threats that Mandiant does, you may have noticed a lot of malware lately named “<span style="color: #800000">fxsst.dll</span>”.  If you’re wondering why this is happening, this article is for you.</p>
<p>When I spend time working solely on reverse engineering malware, I don’t often get the whole story with a malware sample. <a href="https://blog.mandiant.com/archives/1786" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>If you deal with the same threats that Mandiant does, you may have noticed a lot of malware lately named “<span style="color: #800000">fxsst.dll</span>”.  If you’re wondering why this is happening, this article is for you.</p>
<p>When I spend time working solely on reverse engineering malware, I don’t often get the whole story with a malware sample. I wasn’t curious about the name<span style="color: #800000"> fxsst.dll</span> until we had a plump stack of malware samples in our library that all had this name and were completely unrelated to each other. A quick check with our incident responders confirmed that in my latest specimen the malware was operational and the persistence mechanism was not immediately apparent.  It gave me a flashback of <a href="http://blog.mandiant.com/archives/1207" target="_blank"><span style="color: #800000">ntshrui.dll</span></a> from last year and I decided to investigate the issue.</p>
<p>If you try a quick Google search, you will find that<span style="color: #800000"> fxsst.dll</span> is a legitimate system DLL, specifically the fax server.  The DLL is found on most systems that were installed with default settings, though it is an optional feature during the operating system installation process.  It resides in the <span style="color: #800000">System32</span> folder, and a search for the DLL on a live system with Process Explorer shows that it is loaded inside the <span style="color: #800000">Explorer.exe</span> process.  At this point it sounds very similar to the <span style="color: #800000">ntshrui.dll</span> problem, but we’ll keep digging.</p>
<p>I found that my malware analysis VM did not contain <span style="color: #800000">fxsst.dll</span> so I placed a malware DLL of this name in the <span style="color: #800000">System32</span> folder and rebooted. The malware was loaded by <span style="color: #800000">Explorer.exe</span> upon reboot. Unlike <span style="color: #800000">ntshrui.dll</span> though, there is no mention of <span style="color: #800000">fxsst.dll</span> anywhere in the Registry. A string search through <span style="color: #800000">Explorer.exe</span> reveals that it is also not loaded directly by the program through its import table or dynamically with <span style="color: #0000ff">LoadLibrary()</span>. A complete search for <span style="color: #800000">fxsst.dll</span> through all files revealed it to be referenced by the file <span style="color: #800000">stobject.dll</span> in the <span style="color: #800000">System32</span> folder.</p>
<p><span style="color: #800000">Stobject.dll</span> is the System Tray component of the Windows Shell (the tray at the bottom right of your screen). It is loaded by <span style="color: #800000">Explorer.exe</span> as an In-Process Server (InprocServer in Windows lingo) and utilized through a COM interface. It is referenced in the Registry as shown below.</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/fxsst-12.png"><img class="alignnone size-full wp-image-1791" src="http://blog.mandiant.com/wp-content/ammo/fxsst-12.png" alt="" width="743" height="155" /></a></p>
<p>With the mystery of <span style="color: #800000">stobject.dll</span> solved, we can focus on how it loads <span style="color: #800000">fxsst.dll</span>. We also need to figure out what a piece of malware must do to successfully replace the legitimate DLL and still ensure a stable system. The following is the decompiled fragment of <span style="color: #800000">stobject.dll</span> which shows the loading of <span style="color: #800000">fxsst.dll</span>.</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/fxsst-21.png"><img class="alignnone size-full wp-image-1792" src="http://blog.mandiant.com/wp-content/ammo/fxsst-21.png" alt="" width="535" height="147" /></a></p>
<p>According to this fragment of code if the<span style="color: #800000"> fxsst.dll</span> file is found it will be loaded and the two functions, <span style="color: #0000ff">IsFaxMessage()</span> and <span style="color: #0000ff">FaxMonitorShutdown()</span> will be resolved and stored in a pair of global function pointers. If the DLL is not found, or if the functions were not found within the DLL, then the global function pointers will be NULL. Let us now examine how these function pointers are used to see if a NULL pointer will adversely affect the program.</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/fxsst-31.png"><img class="alignnone size-full wp-image-1793" src="http://blog.mandiant.com/wp-content/ammo/fxsst-31.png" alt="" width="366" height="159" /></a></p>
<p>The <span style="color: #0000ff">IsFaxMessage()</span> function is used only once, and in the fragment above you can see that the program checks to see if it is NULL before calling the function. If the pointer is NULL, then the program just skips this piece of functionality. The same is the case for <span style="color: #0000ff">FaxMonitorShutdown()</span>. Why does this matter? If a malware replaces <span style="color: #800000">fxsst.dll</span> and is loaded by Explorer through <span style="color: #800000">stobject.dll</span>, then it doesn’t need to implement the fax server function calls. The only repercussion is that the system can no longer act as a fax server, but that is a feature I don’t think anyone would notice was missing. The malware authors obviously arrived at the same conclusion.</p>
<p>Since <span style="color: #800000">fxsst.dll</span> resides in the <span style="color: #800000">System32</span> folder, is not protected by KnownDlls and is loaded by the <span style="color: #800000">Explorer.exe</span> process, it is vulnerable to the same DLL load order hijack as <span style="color: #800000">ntshrui.dll</span>. By that I mean you can place a malicious DLL in the <span style="color: #800000">C:\WINDOWS</span> folder and it will load instead of the legitimate copy in <span style="color: #800000">System32</span>. You can also just overwrite the copy in <span style="color: #800000">System32</span> and the user of the system will not notice. Unlike with<span style="color: #800000"> ntshrui.dll</span>, the malware replacing <span style="color: #800000">fxsst.dll</span> doesn’t really need to take the extra step of loading the legitimate copy to restore its important functionality.  In this case, the original functionality is useless to all but the last few people in the world who still use their Windows computer to receive faxes.</p>
<p><strong>Conclusion (and TL;DR version):</strong></p>
<p>You can take pretty much any malware DLL, name it <span style="color: #800000">fxsst.dll</span> and drop it in <span style="color: #800000">C:\WINDOWS</span> or the <span style="color: #800000">System32</span> folder and <span style="color: #800000">Explorer.exe</span> will load it at boot time. No hassle, no fuss. There are bound to be more problematic DLL locations like this, but I’ll keep spreading the word as we find them.<br />
</p>
<p><iframe src="http://www.facebook.com/plugins/like.php?app_id=156147997784697&amp;href=http%3A%2F%2Fblog.mandiant.com%2Farchives%2F1786&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font=verdana&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/1786/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jamie Butler named to the Black Hat Review Board</title>
		<link>https://blog.mandiant.com/archives/1760?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=black-hat-review-board</link>
		<comments>https://blog.mandiant.com/archives/1760#comments</comments>
		<pubDate>Thu, 19 May 2011 15:50:08 +0000</pubDate>
		<dc:creator>Travis Reese</dc:creator>
				<category><![CDATA[The Suite Spot]]></category>
		<category><![CDATA[Black Hat]]></category>
		<category><![CDATA[incident response]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[Memory analysis]]></category>
		<category><![CDATA[speaking]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=1760</guid>
		<description><![CDATA[<p>&#160;<br />
MANDIANT would like to congratulate <a href="https://www.blackhat.com/review-board.html#Butler" target="_blank">Jamie Butler</a> on his appointment to the Black Hat Review Board.  Black Hat is one of the premier technical security conferences, and Jamie’s appointment to its board is a testament to his contributions in advancing the field of computer security. <a href="https://blog.mandiant.com/archives/1760" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;<br />
MANDIANT would like to congratulate <a href="https://www.blackhat.com/review-board.html#Butler" target="_blank">Jamie Butler</a> on his appointment to the Black Hat Review Board.  Black Hat is one of the premier technical security conferences, and Jamie’s appointment to its board is a testament to his contributions in advancing the field of computer security.  Jamie has been a long-time trainer at this conference and will still be teaching <a href="http://blackhat.com/html/bh-us-11/training/bh-us-11-training_jb-mf.html">Advanced Memory Forensics in Incident Response</a> there with Peter Silberman.  MANDIANT will also be teaching <a href="https://www.blackhat.com/html/bh-us-11/training/bh-us-11-training_md-mal.html" target="_blank">Malware Analysis</a>, <a href="https://www.blackhat.com/html/bh-us-11/training/bh-us-11-training_md-4dy-advmal.html" target="_blank">Advanced Malware Analysis</a>, and <a href="https://www.blackhat.com/html/bh-us-11/training/bh-us-11-training_md-ir.html" target="_blank">Incident Response: Black Hat Edition</a> at the 2011 show.<br />
&nbsp;<br />
We look forward to the cutting-edge presentations and discussions at <a href="http://blackhat.com/html/bh-us-11/bh-us-11-home.html" target="_blank">Blackhat USA 2011</a> and hope to see you there!<br />
<br />&nbsp;<br />
<iframe src="http://www.facebook.com/plugins/like.php?app_id=156147997784697&amp;href=http%3A%2F%2Fblog.mandiant.com%2Farchives%2F1760&amp;send=true&amp;layout=standard&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/1760/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuxnet Memory Analysis and IOC creation</title>
		<link>https://blog.mandiant.com/archives/1236?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stuxnet-memory-analysis-ioc-creation</link>
		<comments>https://blog.mandiant.com/archives/1236#comments</comments>
		<pubDate>Wed, 21 Jul 2010 22:16:51 +0000</pubDate>
		<dc:creator>Peter Silberman</dc:creator>
				<category><![CDATA[The Lab]]></category>
		<category><![CDATA[IOC]]></category>
		<category><![CDATA[IOCe]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[Memory analysis]]></category>
		<category><![CDATA[Stuxnet]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=1236</guid>
		<description><![CDATA[<p>The <a href="http://blogs.technet.com/b/mmpc/archive/2010/07/16/the-stuxnet-sting.aspx">stuxnet</a> malware has been making the press recently for two reasons.  First it contains two drivers signed with a legitimate (at the time) <a href="http://threatpost.com/en_us/blogs/possible-new-rootkit-has-drivers-signed-realtek-071510">cert</a>. Second  is it’s targeting <a href="http://www.zdnet.co.uk/news/security/2010/07/19/windows-systems-at-risk-from-stuxnet-shortcut-malware-40089575/">SCADA systems</a>. The malware is cool for a host of other geeky reasons. <a href="https://blog.mandiant.com/archives/1236" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://blogs.technet.com/b/mmpc/archive/2010/07/16/the-stuxnet-sting.aspx">stuxnet</a> malware has been making the press recently for two reasons.  First it contains two drivers signed with a legitimate (at the time) <a href="http://threatpost.com/en_us/blogs/possible-new-rootkit-has-drivers-signed-realtek-071510">cert</a>. Second  is it’s targeting <a href="http://www.zdnet.co.uk/news/security/2010/07/19/windows-systems-at-risk-from-stuxnet-shortcut-malware-40089575/">SCADA systems</a>. The malware is cool for a host of other geeky reasons. Nick Harbour, Stephen Davis, and I started looking at the malware Sunday afternoon. We had hoped to write a blog post about the specifics of the malware before we left for Vegas on Friday. However, in the short term I thought this malware would provide a great opportunity to demonstrate how memory analysis can be leveraged to find malware easily, and how the MANDIANT’s<a href="http://www.mandiant.com/products/free_software/ioce/"> Indicator of Compromise editor</a> (IOCe) tool can be used to describe the malware and what to look for.</p>
<p>The goal of every good IOC is to leverage the intelligence we have about the malware to find it effectively, while allowing for changes/ variants, and weeding out false positives. We can describe most aspects of malware using the IOC language, for this exercise we will focus our energy on writing a good memory IOC. In memory, malware appears rather naked and this is a prime example of that. When loaded, stuxnet spawns lsass.exe in a suspended state. The malware then maps in its own executable section and fixes up the CONTEXT to point to the newly mapped in section. This is a common task performed by malware and allows the malware to execute under the pretense of a known and trusted process. The first indicator in memory is the path it uses to spawn lsass.exe:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/lsass_string.png"><img class="alignnone size-full wp-image-1239" src="http://blog.mandiant.com/wp-content/ammo/lsass_string.png" alt="" width="848" height="108" /></a></p>
<p>Notice that the path to lsass.exe has extra backslashes so when the backslashes are resolved by CreateProcessW the path is c:\windows\\system32\\lsass.exe  instead of c:\windows\system32\lsass.exe. This is seen in the following screen shot taken from Audit Viewer:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/lssas_av.png"><img class="alignnone size-full wp-image-1241" src="http://blog.mandiant.com/wp-content/ammo/lssas_av.png" alt="" width="286" height="332" /></a></p>
<p>Notice the arguments in each process. The process with a score of 100 is the original lsass spawned by the system. The process with a score of negative 145 is the lsass spawned by the malware. The arguments are very distinctive and a great indication that something is wrong. This is a fine IOC for this specific variant but fixing this and rendering the IOC useless is a trivial task for this malware author. So let’s keep building out the IOC.</p>
<p>If we examine the lsass process further we see another indicator that something is wrong.</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/lsass_loadedmodules.png"><img class="alignnone size-full wp-image-1242" src="http://blog.mandiant.com/wp-content/ammo/lsass_loadedmodules.png" alt="" width="361" height="219" /></a></p>
<p>Above is a complete DLL listing of the malicious lsass. Who can spot what is missing? If you noticed the lsass.exe itself is missing you are correct. The original lsass has about three times the number of DLL&#8217;s and also includes lsass.exe in the listing:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/non_malicious_lsass_listing.png"><img class="alignnone size-full wp-image-1243" src="http://blog.mandiant.com/wp-content/ammo/non_malicious_lsass_listing.png" alt="" width="273" height="610" /></a></p>
<p>The listing continues but notice lsass.exe at the top. The lack of a binary and DLLs in the malicious lsass listing reconfirms what we already knew. That the malware used a process suspend and unmap technique. When the attacker unmaps the lsass.exe section, the lsass.exe is removed the VAD tree and subsequently doesn&#8217;t show up when doing a DLL listing based on VADs. Spotting suspend and unmap via taskmgr or other live response tools would be very difficult. In this case the malware author took extra care and created the process with the correct privileges allowing the attacker to mimic the correct lsass.exe user.</p>
<p>The next addition to the IOC is the digital signature itself. The drivers were signed and verified:</p>
<blockquote><p>&lt;DigitalSignature&gt;</p>
<p><strong> </strong> &lt;SignatureExists&gt;<strong>true</strong>&lt;/SignatureExists&gt;</p>
<p><strong> </strong> &lt;SignatureVerified&gt;<strong>true</strong>&lt;/SignatureVerified&gt;</p>
<p><strong> </strong> &lt;Description&gt;<strong>The file is signed and the signature was verified.</strong>&lt;/Description&gt;</p>
<p><strong> </strong> &lt;CertificateSubject&gt;<strong>Realtek Semiconductor Corp</strong>&lt;/CertificateSubject&gt;</p>
<p><strong> </strong> &lt;CertificateIssuer&gt;<strong>VeriSign Class 3 Code Signing 2004 CA</strong>&lt;/CertificateIssuer&gt;</p>
<p>&lt;/DigitalSignature&gt;</p></blockquote>
<p>We can use the fact that this certificate has now been revoked and add this to our IOC. This again is not a great variant resistant IOC because the attacker can sign their driver with a new cert, if they have one, or have an unsigned driver. In either case those changes will render this IOC useless. We will still add it to our existing IOC knowledge base.</p>
<p>The next behavior to create an IOC for is the injection component. Stuxnet injects at least one binary into svchost, lsass, services and we see references for the potential to infect winlogon as well. Stuxnet is actually injecting a full binary not just shellcode into these processes.</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/infected_processes.png"><img class="alignnone size-full wp-image-1245" src="http://blog.mandiant.com/wp-content/ammo/infected_processes.png" alt="" width="141" height="83" /></a></p>
<p>When we examine the inject sections we see the binaries import three dlls:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/injected_Memory_section.png"><img class="alignnone size-full wp-image-1246" src="http://blog.mandiant.com/wp-content/ammo/injected_Memory_section.png" alt="" width="584" height="527" /></a></p>
<p>The most abstract way to write an IOC for this is to say any process that has an injected binary that imports ADVAPI32.dll or KERNEL32.dll or USER32.dll flag as part of the stuxnet malware family. There is a chance we could end up flagging other things as part of stuxnet but adding imports makes the IOC a little too strict.  This is a much better signature the previous two. It allows for some modification and requires the author to actually make more than one line code changes in their malware to force us to miss it. Now it’s still feasible that the malware could be modified and we could miss it with the current three IOC&#8217;s we have so let’s continue building our IOC. The final thing to create an IOC for is the rootkit component. The rootkit component is designed to hide the presence of the malware and LNK file on the filesystem. To do this they use an old standard technique that AV and rootkits have been using for years. The rootkit layers itself on filesystem devices, if you are running on VMWare it will layers itself on the VMWare filesystem driver. If we create an IOC describing the driver layering we can make it very hard to defeat detection. The IOC we create states that any driver that layers itself on sr.sys,  fs_rec.sys, and fastfat.sys will be flagged. There is definitely a chance for false positive but it should be a small set of hosts and you can add parameters to exclude the false positives if need be. This IOC could be expanded if you are running truecrypt  or other filesystem software the IOC might need to be updated or modified to include or exclude certain drivers. IOC&#8217;s can and should be tailored for the environment where necessary. The final memory IOC looks like this:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/ioc_mem.png"><img class="alignnone size-full wp-image-1247" src="http://blog.mandiant.com/wp-content/ammo/ioc_mem.png" alt="" width="469" height="216" /></a></p>
<p>Lets translate this IOC into english. If a process with an argument that contains \\system32\\lsass.exe <strong>OR</strong> a driver exists that has a certificate subject that contains Realtek Semiconductor Corp flag it as stuxnet. <strong>OR </strong>a driver exists that has attached to the following fs_rec.sys <strong>AND</strong> sr.sys <strong>AND</strong> fastfat.sys flag the driver as part of stuxnet. <strong>OR </strong>a process has an injected section <strong>AND </strong>the injected section imports any of the following DLLs advapi32.dll <strong>OR</strong> kernel32.dll <strong>OR</strong> user32.dll. This is a pretty solid IOC for malware in memory as we do more work on the malware we may find more nuisances we can add to it, this is a good start.</p>
<p>Our focus here was to describe the malware in memory using an IOC. But when we write IOCs for the field or customers we take everything into account including disk, registry,  filesystem, eventlog, etc. A more complete IOC for this malware looks like:</p>
<p><a href="http://blog.mandiant.com/wp-content/ammo/ioc_full1.png"><img class="alignnone size-full wp-image-1252" src="http://blog.mandiant.com/wp-content/ammo/ioc_full1.png" alt="" width="683" height="500" /></a></p>
<p>This IOC reads the following way if the file has a section named .stub <strong>OR </strong>a file exists named mdmcpq3.pnf <strong>OR</strong> a file exists named mdmeric3.pnf <strong>OR</strong> a file exists named oem6c.pnf <strong>OR</strong> a file exists named oem7a.pnf <strong>OR</strong> all of the following drivers are attached to by one drivers fs_rec.sys, sr.sys, fastfat.sys <strong>OR</strong> a process has an injected section <strong>AND</strong> it imports any of the following DLLs advapi32.dll, kernel32.dll, user32.dll <strong>OR</strong> a file exists named mrxcls.sys and it has a certificate subject of Realtek Semiconductor Corp <strong>OR</strong> a file exists and it has a name of mrxnet.sys and it has a certificate subject of Realtek Semiconductor Corp <strong>OR</strong> a registry key path exists of HKEY_LOCAL_MACHINE\SYSYTEM\ControlSet001\Services\MRxCLs\ImagePath <strong>AND</strong> has a value of mrxcls.sys <strong>OR</strong> a registry key path exists of HKEY_LOCAL_MACHINE\SYSYTEM\ControlSet001\Services\MRxNet\ImagePath <strong>AND</strong> has a value of mrxnet.sys.</p>
<p>Nick Harbour, Stephen Davis, Jamie Butler, Kris Harms and I will all be at <a href="http://www.blackhat.com">Blackhat </a>this year teaching classes ranging from <a href="http://www.blackhat.com/html/bh-us-10/training/bh-us-10-training_md-mal.html">Malware Analysis Crash Course</a>, <a href="http://www.blackhat.com/html/bh-us-10/training/bh-us-10-training_md-4dy-advmal.html">Advanced Malware Analysis</a>, <a href="http://www.blackhat.com/html/bh-us-10/training/bh-us-10-training_jb-mf.html">Advanced Memory Analysis in Incident Response</a>, and <a href="http://www.blackhat.com/html/bh-us-10/training/bh-us-10-training_md-ir.html">Incident Response</a>. Even if you don&#8217;t take a class, join us for the <a href="http://www.mandiant.com/news_events/forms/shadow_bar">MANDIANT pre-game party</a> from 7-9 on Wednesday before going out for the night!<br />
<br />
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.mandiant.com%2Farchives%2F1236&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/1236/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fresh Prints of Mal-Ware:  Choose Your Own Adventure!</title>
		<link>https://blog.mandiant.com/archives/953?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=953</link>
		<comments>https://blog.mandiant.com/archives/953#comments</comments>
		<pubDate>Wed, 14 Apr 2010 22:08:19 +0000</pubDate>
		<dc:creator>Christopher Glyer</dc:creator>
				<category><![CDATA[The Suite Spot]]></category>
		<category><![CDATA[Advanced Persistent Threat]]></category>
		<category><![CDATA[Fresh Prints of Mal-Ware]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=953</guid>
		<description><![CDATA[<p>Kyle Dempsey and I have been busy putting together content for the upcoming Fresh Prints webinar, “<a href="https://cc.readytalk.com/cc/schedule/display.do?udc=getet90l1l2a">Choose Your Own Adventure</a>,” being held this Thursday, April 15th at 2PM EDT.   If you thought of the Choose Your Own Adventure® book series when you saw the title, you understand where we’re going with this. <a href="https://blog.mandiant.com/archives/953" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>Kyle Dempsey and I have been busy putting together content for the upcoming Fresh Prints webinar, “<a href="https://cc.readytalk.com/cc/schedule/display.do?udc=getet90l1l2a">Choose Your Own Adventure</a>,” being held this Thursday, April 15th at 2PM EDT.   If you thought of the Choose Your Own Adventure® book series when you saw the title, you understand where we’re going with this.<br />
&nbsp;<br />
This webinar’s content was developed based on feedback we received from registrants, specifically:</p>
<ul>
<li>How does MANDIANT “Find Evil”</li>
<li>Malware internals</li>
</ul>
<p>&nbsp;<br />
After gathering responses, what we found was that people know the basics about the APT – and what they are most interested in knowing is how our consultants go out in the field and actually find the attackers.<br />
&nbsp;<br />
I have seen some presentations pop-up that speak at a high level on this threat, but they always stop short of showing you how the attackers compromise an organization’s network or how an investigation was conducted.  Kyle and I wanted to create a webinar that showed how we actually conduct an investigation (tools used, screenshots of results…etc.) using real client data (used with their permission).<br />
&nbsp;<br />
The webinar details what we would do with traditional drive based forensics to find malware and contrasts it with real examples of using an approach that scales to an enterprise environment with tens of thousands of hosts (without using an army of investigators and imaging every system under the sun).<br />
&nbsp;<br />
I hope you can join us Thursday for the webinar. As always, there will be plenty of time at the end of the presentation for Q&amp;A.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/953/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>M-Trends: Advanced Persistent Threat Malware</title>
		<link>https://blog.mandiant.com/archives/730?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=m-trends-advanced-persistent-threat-malware</link>
		<comments>https://blog.mandiant.com/archives/730#comments</comments>
		<pubDate>Fri, 15 Jan 2010 18:44:29 +0000</pubDate>
		<dc:creator>wendi</dc:creator>
				<category><![CDATA[The Suite Spot]]></category>
		<category><![CDATA[Advanced Persistent Threat]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[M-Trends]]></category>
		<category><![CDATA[malware analysis]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=730</guid>
		<description><![CDATA[<p>There are a lot of reports in the news about the types of malware being utilized by the Advanced Persistent Threat (APT) attackers.  Our upcoming release of M-Trends will go into great detail about the types of malware, its capabilities, and how the attackers leverage a variety of malware throughout a breadth of victim organizations to accomplish very specific goals.   Over the next week, the MANDIANT blog will feature excerpts from our upcoming M-Trends report that illustrate just how difficult it is to identify APT techniques. <a href="https://blog.mandiant.com/archives/730" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>There are a lot of reports in the news about the types of malware being utilized by the Advanced Persistent Threat (APT) attackers.  Our upcoming release of M-Trends will go into great detail about the types of malware, its capabilities, and how the attackers leverage a variety of malware throughout a breadth of victim organizations to accomplish very specific goals.   Over the next week, the MANDIANT blog will feature excerpts from our upcoming M-Trends report that illustrate just how difficult it is to identify APT techniques.</p>
<p>The most significant commonality of APT malware is that it hides in plain sight. It avoids detection by using common network ports, process injection and Windows service persistence.  Every piece of APT malware cataloged by MANDIANT initiated only outbound network connections.  No sample listened for inbound connections.  So, unless an enterprise network is specifically monitoring outbound network traffic for APT-related anomalies, it will not identify the APT malware outbound beaconing attempts.</p>
<p>A few of the most poignant stats about APT malware are listed below:</p>
<p>APT Malware:</p>
<ul>
<li>Average File Size: 121.85 KB</li>
</ul>
<p>Most Common APT Filenames:</p>
<ul>
<li>svchost.exe (most common)</li>
<li>iexplore.exe</li>
<li>iprinp.dll</li>
<li>wiinzf32.dll</li>
</ul>
<p>APT Malware avoids anomaly detection through:</p>
<ul>
<li>Outbound HTTP connections</li>
<li>Process injection</li>
<li>Service persistence</li>
</ul>
<p>APT Malware Communication:</p>
<ul>
<li>100% of APT backdoors made only outbound connections
<ul>
<li>83% used TCP port 80 or 443</li>
<li>17% used another port</li>
</ul>
</li>
</ul>
<p>Because APT malware is so difficult to detect, simple malware signatures such as MD5 hashes, filenames, and traditional anti-virus methods usually yield a low rate of true positives.  M-Trends will provide detailed information about how exactly organizations can posture themselves for success when fighting attackers with such specialized and sophisticated capabilities.</p>
<p>If you’d like to register for a copy of “M-Trends,” drop us a note at info(at)mandiant(dot)com otherwise, keep your eyes peeled to our blog  and <a href="http://www.mandiant.com/" target="_blank">http://www.mandiant.com</a> for the official release of “M-Trends.”</p>
<p>Special Thanks to Peter Silberman, the MANDIANT malware analysis team, and product engineers for their work in developing this information.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/730/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex your Memory Forensic skills at CEIC!!!</title>
		<link>https://blog.mandiant.com/archives/318?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flex-your-memory-forensic-skills-at-ceic</link>
		<comments>https://blog.mandiant.com/archives/318#comments</comments>
		<pubDate>Mon, 11 May 2009 16:15:57 +0000</pubDate>
		<dc:creator>Peter Silberman</dc:creator>
				<category><![CDATA[The Whiteboard]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[Audit Viewer]]></category>
		<category><![CDATA[Encase]]></category>
		<category><![CDATA[malware analysis]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=318</guid>
		<description><![CDATA[<p>MANDIANT will be at this year’s Computer Enterprise Investigation Conference (CEIC). I will be there as well running a contest for incident responders. The contest is designed to test your ability to identify malware in memory. We have all heard of the Advanced Persistent Threat, we know the acronym APT.  If you’re not familiar with APT or want to become more familiar check out <a href="https://cc.readytalk.com/cc/schedule/display.do?udc=1s8rbdxuuzuf7" target="_blank">https://cc.readytalk.com/cc/schedule/display.do?udc=1s8rbdxuuzuf7</a>. <a href="https://blog.mandiant.com/archives/318" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>MANDIANT will be at this year’s Computer Enterprise Investigation Conference (CEIC). I will be there as well running a contest for incident responders. The contest is designed to test your ability to identify malware in memory. We have all heard of the Advanced Persistent Threat, we know the acronym APT.  If you’re not familiar with APT or want to become more familiar check out <a href="https://cc.readytalk.com/cc/schedule/display.do?udc=1s8rbdxuuzuf7" target="_blank">https://cc.readytalk.com/cc/schedule/display.do?udc=1s8rbdxuuzuf7</a>.</p>
<p>But how many of us have seen these cute cuddly creatures on live systems or in dead memory? This is your opportunity to come see if you can find the malware of an actual APT incident as well as some other incident of my own creation.</p>
<p>The contest will run two days and kick off Monday, May 18 at 9:45 a.m.  The contest will work as follows:  you will be given access to a virtual machine (VM). This VM will be pre-loaded with Audit Viewer and Memoryze. Audit Viewer will already have the audits needed to solve the incident loaded, which will cut down on the time needed at the station. You will have 10 minutes to go through the results of the audit and answer a set of four to five questions. At minutes 4, 6, and 8 you can ask for hints. If you answer three more of the questions on the first day you are eligible to compete on the second day. The second day will work the same. One of these two days will contain actual APT malware taken from an incident we responded too. The contest is designed to simulate what we see on a daily basis and to help attendees learn more about finding malware in memory. The prize will be an iLive IP908B 9&#8243; Portable DVD Player With iPod® Dock And Swivel Screen.</p>
<p>If you are wondering how to prepare for the contest, we recommend you read the Audit Viewer user guide included in <a href="http://www.mandiant.com/software/mav.htm">Audit Viewer</a>. You should understand the data displayed by Audit Viewer and how to navigate/search Audit Viewer results. You will not have to run Memoryze as all the data you need to solve the case will be preloaded into Audit Viewer. We will have an Audit Viewer training slide deck running at the contest so you can if you&#8217;d like cram prior to the competition but as one of my college professors might have said &#8220;cramming is not recommended.&#8221;</p>
<p>You may say, &#8220;well I don’t have much memory analysis experience.&#8221; That does not matter! Stop by the booth, I will be there to walk through how to do memory forensics on 15 or so unique memory images. Each memory image is a different type of malware or scenario. All our demonstrations will utilize <a href="http://blog.mandiant.com/archives/80">MemScript</a>, which is a FREE EnCase script written by Kelcey Tietjen that integrates memory analysis into EnCase. This is a great chance to come and learn something new. And, as always, if you have questions about previous talks we’ve given or upcoming research you’ve read about, I’ll be more than happy to chat about those as well. So stop by, watch others compete, come and see the big red box, talk memory, APT, fluffy bunnies and more.</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/318/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article on how to use Memoryze and Audit Viewer for malware analysis</title>
		<link>https://blog.mandiant.com/archives/75?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=article-on-how-to-use-memoryze-and-audit-viewer-for-malware-analysis</link>
		<comments>https://blog.mandiant.com/archives/75#comments</comments>
		<pubDate>Mon, 01 Dec 2008 15:40:28 +0000</pubDate>
		<dc:creator>Peter Silberman</dc:creator>
				<category><![CDATA[The Lab]]></category>
		<category><![CDATA[Audit Viewer]]></category>
		<category><![CDATA[malware analysis]]></category>
		<category><![CDATA[Memoryze]]></category>
		<category><![CDATA[offensive computing]]></category>
		<category><![CDATA[openrce]]></category>

		<guid isPermaLink="false">http://blog.mandiant.com/?p=75</guid>
		<description><![CDATA[<p>I know not everyone reads OpenRCE, but it has been a favorite haunt of mine since Pedram launched it. Over the holiday, I posted an article there about how to use Memoryze and Audit Viewer to do malware analysis since that has always been one of my hobbies. <a href="https://blog.mandiant.com/archives/75" class="read_more">Read the rest</a></p>]]></description>
			<content:encoded><![CDATA[<p>I know not everyone reads OpenRCE, but it has been a favorite haunt of mine since Pedram launched it. Over the holiday, I posted an article there about how to use Memoryze and Audit Viewer to do malware analysis since that has always been one of my hobbies.<br />
<br />
See <a href="http://www.openrce.org/articles/full_view/32">Memoryze Memory Forensics Tool</a> at OpenRCE.<br />
<br />
NOTE: John O. pointed out that having spaces in your path where Memoryze was installed may prevent Audit Viewer from launching Memoryze because of how batch scripts&#8217; input is interpreted. If you install Memoryze in a path with no spaces you should be fine.<br />
<br />
Thanks to Pedram for helping with the post to <a href="http://www.openrce.org">OpenRCE</a> and to Danny Quist at <a href="http://www.offensivecomputing.net/?q=node/979">Offensive Computing</a> for his blog entry.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.mandiant.com/archives/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

