<?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>Darknet - The Darkside &#187; duster</title>
	<atom:link href="http://www.darknet.org.uk/tag/duster/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darknet.org.uk</link>
	<description>Ethical Hacking, Penetration Testing &#38; Computer Security</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:34:17 +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>eEye Duster &#8211; Dead/Uninitialized Stack Eraser</title>
		<link>http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/</link>
		<comments>http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/#comments</comments>
		<pubDate>Thu, 03 Aug 2006 04:37:25 +0000</pubDate>
		<dc:creator>Darknet</dc:creator>
				<category><![CDATA[Hacking Tools]]></category>
		<category><![CDATA[Security Software]]></category>
		<category><![CDATA[duster]]></category>
		<category><![CDATA[duster-stack-eraser]]></category>
		<category><![CDATA[eeye]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[heap-wiping]]></category>
		<category><![CDATA[security-tools]]></category>
		<category><![CDATA[software-hacking]]></category>
		<category><![CDATA[stack-eraser]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/</guid>
		<description><![CDATA[Duster is the Dead/Uninitialized Stack Eraser, an injectable DLL that causes uninitialized stack and heap memory in its host process to be wiped over with a specific value. It is intended as a crude tool to assist in the run-time discovery of uninitialized memory usage problems by increasing the chances that the host process will [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Duster is the Dead/Uninitialized Stack Eraser, an injectable DLL that causes uninitialized stack and heap memory in its host process to be wiped over with a specific value. It is intended as a crude tool to assist in the run-time discovery of uninitialized memory usage problems by increasing the chances that the host process will raise an exception when a value in uninitialized memory is used. To use Duster, just inject it into the target process (using the DLLInject utility), or add it to AppInit_DLLs (possible but not recommended).</p>
<p>Duster is a quick and dirty implementation of its concept, and as such, it has a number of limitations:</p>
<p>Stack wiping is accomplished by overwriting all memory between the stack commit &#8220;ceiling&#8221; and ESP, whenever RtlAllocateHeap, RtlReAllocateHeap, or RtlFreeHeap is called, an exception occurs, or a system call is dispatched, which seriously limits the execution flow &#8220;granularity&#8221; with which stack wiping occurs. Additionally, system call dispatch hooking is accomplished by replacing specific &#8220;INT 2Eh&#8221; or &#8220;MOV EDX, 7FFE0300h&#8221; instructions, the first of which currently relies upon a two-byte privileged instruction which is handled specially by the exception handler hook, resulting in some overhead but mostly making it difficult to use a debugger in conjunction with Duster on Windows 2000.</p>
<p>Heap wiping, in addition to a limited amount of heap and argument validation, is performed whenever a heap block is allocated or freed. This is roughly a subset of the functionality provided by the Windows heap manager in debug mode, with the most significant deficiency on Duster&#8217;s part being that it does not wipe memory following a call to RtlReAllocateHeap.</p>
<p>You can download here:</p>
<p></p>
<p><a href="http://research.eeye.com/html/Tools/download/duster.zip">Duster</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D310+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;t=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser" title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;title=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser" title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;title=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser" title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;title=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser" title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/&amp;title=eEye+Duster+%E2%80%93+Dead%2FUninitialized+Stack+Eraser" title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2006%2F08%2Feeye-duster-deaduninitialized-stack-eraser%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2006/08/eeye-duster-deaduninitialized-stack-eraser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

