<?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>Computer Forensics</title>
	<atom:link href="http://computer-forensics.co.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://computer-forensics.co.in</link>
	<description>Data Acquired and Frozen</description>
	<lastBuildDate>Wed, 10 Nov 2010 11:19:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Malwares Exploiting Reverse Engineering Tools</title>
		<link>http://computer-forensics.co.in/2010/11/10/malwares-exploiting-reverse-engineering-tools/</link>
		<comments>http://computer-forensics.co.in/2010/11/10/malwares-exploiting-reverse-engineering-tools/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 10:57:25 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Malware Analysis]]></category>
		<category><![CDATA[Malware Research]]></category>
		<category><![CDATA[dbghelp.dl; vulnerability]]></category>
		<category><![CDATA[Exploiting Reverse Engineering Tools]]></category>
		<category><![CDATA[LoadExportSymbols()]]></category>
		<category><![CDATA[Malwares Exploiting Reverse Engineering Tools]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=78</guid>
		<description><![CDATA[As an addition to the method of finding the presence of Debuggers and Virtual environment, exploiting the debugging tools have started. Recently we came across a new variant of BKDR.IRCBot was found to perform such a trick of exploiting this unexplored vulnerability existing in the LoadExportSymbols() function of dbghelp.dll. This vulnerability causes Olly Debugger (or [...]]]></description>
			<content:encoded><![CDATA[<p>As an addition to the method of finding the presence of Debuggers and Virtual environment, exploiting the debugging tools have started. Recently we came across a new variant of BKDR.IRCBot was found to perform such a trick of exploiting this unexplored vulnerability existing in the <em>LoadExportSymbols()</em> function of dbghelp.dll. This vulnerability causes Olly Debugger (or any other debugger) using this unfixed version of DLL to crash or execute remote code while they load such crafted executables or DLL’s.</p>
<p>When any debugger tries to load the executable, it crashes without any error or crash report. This being a suspicious behavior of anti-debugging, took made me to analyze the file further. Prior to loading in debugger, I noted the file to contain TLS table entry with a TLS Callback function registered with it. I started looking for other simple documented anti-debugging tricks, but could not find any. This is where we sensed that malware is challenging with some out-of-ordinary anti-debugging tricks.</p>
<p>On further analysis of the file’s structure values like Data Directory entries, Import Table entries and its corresponding API’s imported, Export Table, etc. For an executable, existence an export table made me suspicious. It had one export function with very long random bytes. Upon parsing the file in Hex Editor I could conclude the export table function name is 0xC1C bytes long. Now, what does this long name had to do with the crash of a debugger?</p>
<p>Further analysis of the crash narrowed me down to the crash at dbghelp.dll one of the libraries imported by any debugger. The function <em>LoadExportSymbols()</em> was the place where the execution crashes. Further analysis at this module helped me sense that this function will not check the length of the export name string being copied from the buffer to the stack and hence causing buffer overflow in the module. This can better be understood from the illustration below.</p>
<p><a rel="attachment wp-att-79" href="http://computer-forensics.co.in/2010/11/10/malwares-exploiting-reverse-engineering-tools/temp/"><img class="aligncenter size-large wp-image-79" title="Debugger View" src="http://computer-forensics.co.in/wp-content/uploads/2010/11/temp-419x600.jpg" alt="" width="419" height="600" /></a></p>
<p><img src="file:///C:/DOCUME%7E1/SRIRAM%7E1/LOCALS%7E1/Temp/moz-screenshot.png" alt="" /></p>
<p>In the fig, we could see that at the memory location 0x6D529AFF, the export table name data is being copied from buffer to the stack. The buffer can be seen in the dump screen at offset 0x01E72613, and the corresponding data being moved to the stack at 0x0012A491. A normal scenario which can be found in any buffer overflow vulnerability.</p>
<p>If someone has not updated their toolset or dbghelp.dll in the Olly directory in this case or in any applications where one uses this DLL, this method can be used as a simple anti-debugging technique.</p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/11/10/malwares-exploiting-reverse-engineering-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TASM 2.x / MASM 6.x Assembly Language &#8211; Norton Guide</title>
		<link>http://computer-forensics.co.in/2010/09/06/tasm-2-x-masm-6-x-assembly-language-norton-guide/</link>
		<comments>http://computer-forensics.co.in/2010/09/06/tasm-2-x-masm-6-x-assembly-language-norton-guide/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 12:58:15 +0000</pubDate>
		<dc:creator>Ashwin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=75</guid>
		<description><![CDATA[Complete Guide on ASM http://www.ousob.com/ng/masm/]]></description>
			<content:encoded><![CDATA[<p>Complete Guide on ASM</p>
<p>http://www.ousob.com/ng/masm/</p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/09/06/tasm-2-x-masm-6-x-assembly-language-norton-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Code Hosting Service used to spread Malware</title>
		<link>http://computer-forensics.co.in/2010/09/01/google-code-hosting-service-used-to-spread-malware/</link>
		<comments>http://computer-forensics.co.in/2010/09/01/google-code-hosting-service-used-to-spread-malware/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 15:30:54 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Malware Research]]></category>
		<category><![CDATA[Google Code Hosting Service]]></category>
		<category><![CDATA[Google Code Hosting Service used to spread Malware]]></category>
		<category><![CDATA[Hosting Service used to spread Malware]]></category>
		<category><![CDATA[Spread Malware]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=69</guid>
		<description><![CDATA[Malware writers find various places to store their malware so that they can use that location hard-coded in their downloaders they distribute and can change their original payload with different files so that they can infect efficiently with different executables and can be left un-detected. Googlecode have become one such location where malware writers can [...]]]></description>
			<content:encoded><![CDATA[<p>Malware writers find various places to store their malware so that they can use that location hard-coded in their downloaders they distribute and can change their original payload with different files so that they can infect efficiently with different executables and can be left un-detected. Googlecode have become one such location where malware writers can have a repository of such executables and can modify when necessary. Check the screenshot below which states one such example.<a rel="attachment wp-att-70" href="http://computer-forensics.co.in/2010/09/01/google-code-hosting-service-used-to-spread-malware/im/"><img class="alignnone size-large wp-image-70" title="im" src="http://computer-forensics.co.in/wp-content/uploads/2010/09/im-711x600.png" alt="" width="600" height="506" /></a></p>
<p>Most of the files are executable files along with archived “.rar” files. The time stamps show that the files have been uploaded over the course of the last coupe of months. The download count also suggests the count of people in who maybe infected. This suggests that an Trojan-Downloader is actively using this free service to spread malware.</p>
<p>All the malware has to do is just use the HTTP get requests to download the file and execute it in the victim&#8217;s machine.</p>
<p>Another code page is displayed below.</p>
<p><a rel="attachment wp-att-71" href="http://computer-forensics.co.in/2010/09/01/google-code-hosting-service-used-to-spread-malware/1m2/"><img class="aligncenter size-large wp-image-71" title="1m2" src="http://computer-forensics.co.in/wp-content/uploads/2010/09/1m2-600x600.png" alt="" width="600" height="600" /></a></p>
<p>The advantage the malware have here is that these sites are not blocked by any firewalls or Internet security suite and hence can bypass that level of protection. As Google Code is free hosting website for developers, attackers are taking advantage of the service to push their malware.</p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/09/01/google-code-hosting-service-used-to-spread-malware/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is a CPU thread?</title>
		<link>http://computer-forensics.co.in/2010/07/01/what-is-a-cpu-thread/</link>
		<comments>http://computer-forensics.co.in/2010/07/01/what-is-a-cpu-thread/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:46:44 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Operating System Fundamentals]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=67</guid>
		<description><![CDATA[A thread can be said as the smallest entity of a process that is  scheduled to be executed by an operating system. Since the processor can execute only instructions, a multi-tasking operating system splits a long process into small unit called threads. These threads are scheduled to execute for 10ms (For Example).  These thread are [...]]]></description>
			<content:encoded><![CDATA[<p>A thread can be said as the smallest entity of a process that is  scheduled to be executed by an operating system. Since the processor can execute only instructions, a multi-tasking operating system splits a long process into small unit called threads. These threads are scheduled to execute for 10ms (For Example).  These thread are given a unique identifier number called ThreadID. After the execution, the operating system saves the state of the thread executes the next thread. Some of the saved state contains CPU registers, The Kernel Space Stack and the User Space Stack, Thread Local Storage, storage area.</p>
<p>Some of the essential components of the thread are:</p>
<ol>
<li>Contnets of set of CPU registers like Accumulator, Stack pointer, Count and Data Register along with Instruction Pointer</li>
<li>Kernel Mode Stack information</li>
<li>User Mode Stack information</li>
<li>thread-local-storage (TLS) for use by runtime libraries.</li>
<li>Thread Context and Security context for storing privileges.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/07/01/what-is-a-cpu-thread/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Undocumented API: MapAndLoad()</title>
		<link>http://computer-forensics.co.in/2010/06/30/undocumented-api-mapandload/</link>
		<comments>http://computer-forensics.co.in/2010/06/30/undocumented-api-mapandload/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 20:23:06 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Undocumented Winnt API]]></category>
		<category><![CDATA[MapAndLoad()]]></category>
		<category><![CDATA[Undocumented API]]></category>
		<category><![CDATA[Undocumented API MapAndLoad()]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=65</guid>
		<description><![CDATA[MapAndLoad() The IMAGEHLP.DLL can also take care of memory mapping a PE file for you. The MapAndLoad() function maps the requested PE file in memory and fills in the LOADED_IMAGE structure with some useful information about the mapped file. BOOL MapAndLoad( LPSTR ImageName, LPSTR DllPath, PLOADED_IMAGE LoadedImage, BOOL DotDll, BOOL ReadOnly ); PARAMETERS ImageName Name [...]]]></description>
			<content:encoded><![CDATA[<h4>MapAndLoad()</h4>
<p>The IMAGEHLP.DLL can also take care of memory mapping a PE file for you. The MapAndLoad() function maps the requested PE file in memory and fills in the LOADED_IMAGE structure with some useful information about the mapped file.</p>
<pre>BOOL MapAndLoad(
LPSTR ImageName,
LPSTR DllPath,
PLOADED_IMAGE LoadedImage,
BOOL DotDll,
BOOL ReadOnly
);</pre>
<p>PARAMETERS</p>
<table border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td width="20%" align="left" valign="top">ImageName</td>
<td align="left" valign="top">Name of the PE file that is loaded.</td>
</tr>
<tr>
<td align="left" valign="top">DllPath</td>
<td align="left" valign="top">Path used to locate the file if the name provided cannot be found. If NULL is passed, then normal rules for searching using the PATH environment variable are applied.</td>
</tr>
<tr>
<td align="left" valign="top">LoadedImage</td>
<td align="left" valign="top">The structure LOADED_IMAGE is defined in the IMAGEHLP.H file. The structure has the following members:</td>
</tr>
<tr>
<td align="left" valign="top">ModuleName</td>
<td align="left" valign="top">Name of the loaded file.</td>
</tr>
<tr>
<td align="left" valign="top">hFile</td>
<td align="left" valign="top">Handle obtained through the call to CreateFile.</td>
</tr>
<tr>
<td align="left" valign="top">MappedAddress</td>
<td align="left" valign="top">Memory address where the file is mapped.</td>
</tr>
<tr>
<td align="left" valign="top">FileHeader</td>
<td align="left" valign="top">Pointer to the PE header within the mapped file.</td>
</tr>
<tr>
<td align="left" valign="top">LastRvaSection</td>
<td align="left" valign="top">The function sets it to the first section (see ImageRvaToVa).</td>
</tr>
<tr>
<td align="left" valign="top">NumberOfSections</td>
<td align="left" valign="top">Number of sections in the loaded PE file.</td>
</tr>
<tr>
<td align="left" valign="top">Sections</td>
<td align="left" valign="top">Pointer to the first section header within the mapped file.</td>
</tr>
<tr>
<td align="left" valign="top">Characteristics</td>
<td align="left" valign="top">Characteristics of the PE file (this is explained in more detail later in this chapter).</td>
</tr>
<tr>
<td align="left" valign="top">fSystemImage</td>
<td align="left" valign="top">Flag indicating whether it is a kernel-mode driver/DLL.</td>
</tr>
<tr>
<td align="left" valign="top">fDOSImage</td>
<td align="left" valign="top">Flag indicating whether it is a DOS executable.</td>
</tr>
<tr>
<td align="left" valign="top">Links</td>
<td align="left" valign="top">List of loaded images.</td>
</tr>
<tr>
<td align="left" valign="top">SizeOfImage</td>
<td align="left" valign="top">Size of the image.</td>
</tr>
</tbody>
</table>
<p>The function sets the members in the structure appropriately after loading the PE file.</p>
<table border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td width="20%" align="left" valign="top">DotDll</td>
<td align="left" valign="top">If the file needs to be searched and does not have an extension, then either the .exe or the .dll extension is used. If the DotDll flag is set to TRUE, the .dll extension is used; otherwise, the .exe extension is used.</td>
</tr>
<tr>
<td align="left" valign="top">ReadOnly</td>
<td align="left" valign="top">If the flag is set to TRUE, the file is mapped as read-only.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/06/30/undocumented-api-mapandload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageNtHeader()</title>
		<link>http://computer-forensics.co.in/2010/06/28/imagentheader/</link>
		<comments>http://computer-forensics.co.in/2010/06/28/imagentheader/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 17:45:06 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Undocumented Winnt API]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=59</guid>
		<description><![CDATA[ImageNtHeader() The ImageRvaToVa() function needs a pointer to the PE header. The ImageNtHeader exported from the IMAGEHLP.DLL can provide you this pointer. PIMAGE_NT_HEADERS ImageNtHeader( LPVOID ImageBase ); PARAMETERS ImageBase Base address where the PE file is mapped into memory using the Win32 API for the memory mapping of files. RETURN VALUES If the function succeeds, [...]]]></description>
			<content:encoded><![CDATA[<h2>ImageNtHeader()</h2>
<p>The ImageRvaToVa() function needs a pointer to the PE header. The ImageNtHeader exported from the IMAGEHLP.DLL can provide you this pointer.</p>
<pre>PIMAGE_NT_HEADERS ImageNtHeader(
LPVOID ImageBase
);</pre>
<p>PARAMETERS</p>
<table border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td width="20%" align="left" valign="top">ImageBase</td>
<td align="left" valign="top">Base address where the PE file is mapped into memory using the Win32 API for the memory mapping of files.</td>
</tr>
</tbody>
</table>
<p>RETURN VALUES<br />
If the function succeeds, the return value is a pointer to the IMAGE_NT_HEADERS structure within the mapped file; otherwise, it returns NULL.</p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/06/28/imagentheader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageRvaToVa()</title>
		<link>http://computer-forensics.co.in/2010/06/28/imagervatova/</link>
		<comments>http://computer-forensics.co.in/2010/06/28/imagervatova/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 17:41:44 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Undocumented Winnt API]]></category>
		<category><![CDATA[ImageRvaToVa()]]></category>
		<category><![CDATA[Undocumented 32 bit Winnt API's]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=57</guid>
		<description><![CDATA[ImageRvaToVa() Description: LPVOID ImageRvaToVa( PIMAGE_NT_HEADERS NtHeaders, LPVOID Base, DWORD Rva, PIMAGE_SECTION_HEADER *LastRvaSection ); PARAMETERS NtHeaders Pointer to an IMAGE_NT_HEADERS structure. This structure represents the PE header and is defined in the WINNT.h file. A pointer to the PE header within a PE file can be obtained using the ImageNtHeader() function exported by IMAGEHLP.DLL. Base Base [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>ImageRvaToVa()</strong></h2>
<p><code>Description:</code></p>
<p><code> </code></p>
<p><code>LPVOID ImageRvaToVa(<br />
PIMAGE_NT_HEADERS NtHeaders,<br />
LPVOID Base,<br />
DWORD Rva,<br />
PIMAGE_SECTION_HEADER *LastRvaSection<br />
);<br />
</code></p>
<p>PARAMETERS<br />
NtHeaders	Pointer to an IMAGE_NT_HEADERS structure. This structure represents the PE header and is defined in the WINNT.h file. A pointer to the PE header within a PE file can be obtained using the ImageNtHeader() function exported by IMAGEHLP.DLL.<br />
Base	Base address where the PE file is mapped into memory using the Win32 API for the memory mapping of files.<br />
Rva	Given relative virtual address.<br />
LastRvaSection	Last RVA section. This is an optional parameter, and you can pass NULL. When specified, it points to a variable that contains the last section value used for the specified image to translate an RVA to a VA. This is used for optimizing the section search, in case the given RVA also falls within the same section as the one for the previous call to the function. The LastRVASection is checked first, and the regular sequential search for the section is carried out only if the given RVA does not fall within the LastRVASection.</p>
<p>RETURN VALUES<br />
If the function succeeds, the return value is the virtual address in the mapped file; otherwise, it is NULL. The error number can be retrieved using the GetLastError() function.</p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/06/28/imagervatova/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trends in Anti-Debugging</title>
		<link>http://computer-forensics.co.in/2010/04/29/trends-in-anti-debugging/</link>
		<comments>http://computer-forensics.co.in/2010/04/29/trends-in-anti-debugging/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 01:22:43 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA['']]></category>
		<category><![CDATA['Latest Trends in Anti-Debugging']]></category>
		<category><![CDATA['open']]></category>
		<category><![CDATA['publish']]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=54</guid>
		<description><![CDATA[Abstract Anti-Debugging techniques take different forms from hiding code from reverse engineers and also to avoiding programs from automated analysis in virtual environments. Gone were days where the malwares encryption used XOR or some algorithms implemented like LZMA in UPX or used simple API to check debugger detection. My day-to-day experience with malwares through Comodo [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Abstract</strong></h2>
<p>Anti-Debugging techniques take different forms from <strong>hiding code from reverse engineers</strong> and also to <strong>avoiding programs from automated analysis in virtual environments</strong>. Gone were days where the malwares encryption used XOR or some algorithms implemented like LZMA in UPX or used simple API to check debugger detection. My day-to-day experience with malwares through Comodo Antivirus for 3 years not only enabled me to keep myself updated with the latest anti-debugging techniques by different malwares and protectors but also made me write Anti-Anti debugging techniques. In this paper I would like to share my research on the currently prevailing anti-debugging techniques used by various commercial software like ASProtect, Armadillo, Themida, SVKP, VMProtect, and some of the famous malwares tricks based on the Windows NT operating system platform.</p>
<p>Read more on this paper available for free download <a href="http://www.computer-forensics.co.in/test/adebugtrick.pdf">Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/04/29/trends-in-anti-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to PE Win32 File Infectors</title>
		<link>http://computer-forensics.co.in/2010/04/26/introduction-to-pe-win32-file-infectors/</link>
		<comments>http://computer-forensics.co.in/2010/04/26/introduction-to-pe-win32-file-infectors/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 09:13:29 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Malware Research]]></category>
		<category><![CDATA[Introduction to PE Win32]]></category>
		<category><![CDATA[Introduction to PE Win32 File]]></category>
		<category><![CDATA[Introduction to PE Win32 File Infectors]]></category>
		<category><![CDATA[PE Win32 File Infectors]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=50</guid>
		<description><![CDATA[Abstract File Infector type viruses modify the code in any frequently used legitimate files in such a way that they can be up before your original application’s process starts. Malwares can achieve this by modifying or inserting the malicious code into any legitimate files in such a way that it can be persistent to the [...]]]></description>
			<content:encoded><![CDATA[<h3><strong>Abstract</strong></h3>
<p style="padding-left: 30px;">File Infector type viruses modify the code in any frequently used legitimate files in such a way that they can be up before your original application’s process starts. Malwares can achieve this by modifying or inserting the malicious code into any legitimate  files in such a way that it can be persistent to the system even after shutdown. This information is of importance for a forensic analyst to assess the ways havoc has been caused in case of a malware infection. This paper will discuss these topics starting from Introduction to PE Files, Different types of PE infectors, classification on the basis of infection, their behavior, with examples.</p>
<p style="padding-left: 30px;">My work experience of above 3 years as senior threat research analyst with “Comodo antivirus”  enhanced me with lots of ideas, concepts, and kept me up to date with the latest malware and their the infection methodologies. I came up with this topic to share my experiences of my research on this topic since has been an area of limited research since it needs a lot of understanding of both assembly language and windows internal architecture.</p>
<p>Read more on this paper available for free download <a href="http://www.computer-forensics.co.in/test/triyag_01.pdf">Here</a></p>
<div><span style="font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif;"><span style="line-height: 19px; white-space: pre-wrap;"> </span><br />
</span></div>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/04/26/introduction-to-pe-win32-file-infectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs&#8217;s Speech @ Graduation</title>
		<link>http://computer-forensics.co.in/2010/04/26/steve-jobss-speech-graduation/</link>
		<comments>http://computer-forensics.co.in/2010/04/26/steve-jobss-speech-graduation/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 08:49:58 +0000</pubDate>
		<dc:creator>Sriram</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[apple jobbs]]></category>
		<category><![CDATA[apple steve]]></category>
		<category><![CDATA[apple steve jobbs]]></category>
		<category><![CDATA[steve jobbs graduation]]></category>
		<category><![CDATA[steve jobbs speech]]></category>
		<category><![CDATA[steve jobbs stanford]]></category>

		<guid isPermaLink="false">http://computer-forensics.co.in/?p=43</guid>
		<description><![CDATA[View Steve Jobb&#8217;s Stanford Commencement Speech, 2005]]></description>
			<content:encoded><![CDATA[<p>View Steve Jobb&#8217;s Stanford Commencement Speech, 2005</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/D1R-jKKp3NA&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/D1R-jKKp3NA&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://computer-forensics.co.in/2010/04/26/steve-jobss-speech-graduation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

