<?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>SourceSec Security Research &#187; reverse engineering</title>
	<atom:link href="http://www.sourcesec.com/tag/reverse-engineering/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sourcesec.com</link>
	<description>Security research and vulnerability assesment</description>
	<lastBuildDate>Tue, 19 Jan 2010 05:15:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows DLL Redirection</title>
		<link>http://www.sourcesec.com/2008/11/03/windows-dll-redirection/</link>
		<comments>http://www.sourcesec.com/2008/11/03/windows-dll-redirection/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 21:48:56 +0000</pubDate>
		<dc:creator>cheffner</dc:creator>
				<category><![CDATA[Papers]]></category>
		<category><![CDATA[Techniques]]></category>
		<category><![CDATA[reverse engineering]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.sourcesec.com/?p=19</guid>
		<description><![CDATA[In Windows, all applications must communicate with the kernel through API functions; as such, these functions are critical to even the simplest Windows application. Thus, the ability to intercept, monitor, and modify a program&#8217;s API calls, commonly called API hooking, effectively gives one full control over that process. This can be useful for a multitude [...]]]></description>
			<content:encoded><![CDATA[<p>In Windows, all applications must communicate with the kernel through API functions; as such, these functions are critical to even the simplest Windows application. Thus, the ability to intercept, monitor, and modify a program&#8217;s API calls, commonly called API hooking, effectively gives one full control over that process. This can be useful for a multitude of reasons, including debugging, reverse engineering, and hacking (in all interpretations of the word).</p>
<p>While there are several methods which can be used to achieve our goal, this tutorial will examine only DLL redirection. This approach was chosen for several reasons:</p>
<ul style="list-style-type:decimal;">
<li>It is relatively simple to implement.</li>
<li>It allows us to view and modify parameters passed to an API function, change return values of that function, and run any other code we desire.</li>
<li>While most other methods require code to be injected into the target process or run from an external application, DLL redirection requires only write access to the target application&#8217;s working directory.</li>
<li>We can intercept any API call without modifying the target (either on disk or in memory) or any system files.</li>
</ul>
<p>The full article has been posted on <a href="http://www.ethicalhacker.net/content/view/207/2/">EthicalHacker.net</a> and <a href="http://milw0rm.com/papers/105">milw0rm.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sourcesec.com/2008/11/03/windows-dll-redirection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

