<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>phed.org &#187; Tool</title>
	<atom:link href="http://phed.org/category/tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://phed.org</link>
	<description>the rantings of michael eddington</description>
	<lastBuildDate>Fri, 15 Jul 2011 11:59:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='phed.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/4b0eafefc16127550b1a335d7344ee9d?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>phed.org &#187; Tool</title>
		<link>http://phed.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://phed.org/osd.xml" title="phed.org" />
	<atom:link rel='hub' href='http://phed.org/?pushpress=hub'/>
		<item>
		<title>Using Code Coverage to Select Fuzzing Sample Files</title>
		<link>http://phed.org/2010/11/01/using-code-coverage-to-select-fuzzing-sample-files/</link>
		<comments>http://phed.org/2010/11/01/using-code-coverage-to-select-fuzzing-sample-files/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 21:39:54 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Peach]]></category>
		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://phed.org/2010/11/01/using-code-coverage-to-select-fuzzing-sample-files/</guid>
		<description><![CDATA[Note: This article covers features in Peach 2.3.7 which is currently in SVN. Selecting good sample files to use when performing file fuzzing can make all the difference.&#160; However, simply tossing several thousand files into a folder and calling it a day doesn’t make allot of sense.&#160; Instead we can use code coverage to select [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=1225&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Note: This article covers features in Peach 2.3.7 which is currently in SVN.</p>
<p>Selecting good sample files to use when performing file fuzzing can make all the difference.&#160; However, simply tossing several thousand files into a folder and calling it a day doesn’t make allot of sense.&#160; Instead we can use code coverage to select the minimum number of files to get the most coverage from our target.&#160; Peach includes a tool called “minset” to perform this task for us.</p>
<p>The minset tool is located in “c:\peach\tools\minset” and contains a test setup that can be run by saying “test.bat”.</p>
<p>Minset has several modes of operation, from simple to more complex.&#160; We will first cover the simplest usage.</p>
<h2>Simple Usage Example</h2>
<p><strong>Syntax:</strong></p>
<p>minset [-k] –s samples -m minset command.exe %s</p>
<ul>
<li>-k&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Optional argument when using graphical programs that do not automatically close </li>
<li>-s samples&#160;&#160;&#160; This is the folder containing sample files to get coverage of </li>
<li>-m minset&#160;&#160;&#160;&#160; This is the folder to place the minimum set of files into </li>
<li>command.exe&#160; The target executable to run </li>
<li>%s&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Any arguments and also a placeholder for the filename (%s) </li>
</ul>
<p>This usage will try all files specified by “samples” and place the minimum set of them into the folder “minset”.&#160; The target command will get run as “command.exe filename”.</p>
<p><strong>Example Usage – Command Line Target:</strong></p>
<p>minset -s samples\*.png -m minset bin\pngcheck.exe %s</p>
<p><strong>Example Usage – Graphical Target:</strong></p>
<p>minset –k -s docs\*.doc -m minset &quot;C:\Program Files (x86)\Microsoft Office   <br />Office14\winword.exe&quot; %s</p>
<h6></h6>
<p>Depending on the complexity of the target program, this type of code coverage can take a while.</p>
<h2>Separated Tracing and Coverage Analysis</h2>
<p>For complex programs, or when performing coverage on a large set of files you may want to distribute the task across several machines.&#160; To support this minset is able to run just the coverage trace separate from the analysis portion.&#160; This allows running coverage traces on multiple machines then running the analysis on the results.</p>
<p><strong>Running Minset in Coverage Trace Mode</strong></p>
<p>minset [-k] –s samples –t traces command.exe args %s</p>
<p>This command line will perform coverage traces using the sample files in “samples” and place the resulting traces into the folder “traces”.&#160; This is the part you will want to distribute.</p>
<p><strong>Running Minset in Analysis Mode</strong></p>
<p>minset –s samples –t traces –m minset</p>
<p>All of your generated traces must be in “traces” and all of the sample files in “samples”.&#160; Minset will perform the coverage analysis and place the minimum set of files into “minset”.</p>
<p>Normally the analysis process is not distributed, however for especially large sets of sample files you may wan to run the analysis after collecting traces on every node then combining the resulting minsets for a final pass.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/1225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/1225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/1225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=1225&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/2010/11/01/using-code-coverage-to-select-fuzzing-sample-files/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>Peach Fuzzing Framework 1.0</title>
		<link>http://phed.org/2007/01/31/peach-fuzzing-framework-10/</link>
		<comments>http://phed.org/2007/01/31/peach-fuzzing-framework-10/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 11:52:14 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://phed.org/2007/07/31/peach-fuzzing-framework-10/</guid>
		<description><![CDATA[Peach has been stable for quite some time, but I finally feel it&#8217;s time to label a release as the 1.0.&#160; I have forked the code as development on Peach 2.0 is in full swing.&#160; Several Generators have been updated and a few bugs fixed since the last release. From here on out, only fix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=37&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Peach has been stable for quite some time, but I finally feel it&#8217;s time to label a release as the 1.0.&nbsp; I have forked the code as development on Peach 2.0 is in full swing.&nbsp; Several Generators have been updated and a few bugs fixed since the last release.</p>
<p>From here on out, only fix releases in the 1.0 branch will occur, new features will end up in the 2.0 series.</p>
<p><a href="http://sourceforge.net/project/platformdownload.php?group_id=149840">Download Peach Fuzzing Framework 1.0</a></p>
<p>New and&nbsp;notable in 1.0:</p>
<ul>
<li>PeachShark &#8212; Convert WireShark captures into Peach Fuzzers!</li>
<li>StringTokenFuzzer &#8212; Tokenizes input string and performs string mutations and fuzzing of each token in the string.</li>
<li>BadDerEncodedOctetString and BadBerEncodedOctetString &#8212; For testing ASN.1 based data</li>
<li>Flags2 &#8212; Better handling/fuzzing of bit flags</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=37&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/2007/01/31/peach-fuzzing-framework-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>WMI Tool 0.1</title>
		<link>http://phed.org/2007/01/30/wmi-tool-01/</link>
		<comments>http://phed.org/2007/01/30/wmi-tool-01/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 06:46:00 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://wp.phed.org/?p=17</guid>
		<description><![CDATA[.!. Found myself reviewing some WMI stuff and needing to set values and see properties and all that good stuff.  WMI Explorer got me partway there, but I still needed to set values.  Sooo&#8230; 15min later there is a small .net tool for this.  Enjoy. Quest for Camelot video WMI Tool Super Size Me rip<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=17&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="display:none;">.!.</div>
<p>Found myself reviewing some WMI stuff and needing to set values and see properties and all that good stuff.  WMI Explorer got me partway there, but I still needed to set values.  Sooo&#8230; 15min later there is a small .net tool for this.  Enjoy.</p>
<div style="display:none;"><a href="http://www.vegblog.org/?quest_for_camelot">Quest for Camelot video</a></div>
<form><a href="http://phed.org/pages/WmiTool">WMI Tool</a></form>
<ul style="display:none;">
<li><a href="http://satellitephonesinfo.com/?super_size_me">Super Size Me rip</a></li>
</ul>
<p><span style="text-decoration:underline;"><br />
</span></p>
<p><em> <em> </em> </em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=17&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/2007/01/30/wmi-tool-01/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>HTTP Authentication Brute Forcer</title>
		<link>http://phed.org/2007/01/06/http-authentication-brute-forcer/</link>
		<comments>http://phed.org/2007/01/06/http-authentication-brute-forcer/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 00:31:08 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://wp.phed.org/?p=19</guid>
		<description><![CDATA[Found myself writing a simple brute forcer yesterday for windows integrated web authentication (NTLM and Kerberose) that worked over SSL.  An easy task with .NET, but was surprised when asked for a tool to do this.  Seems most of the tools out there don&#8217;t have SSL integrated (easy to fix), poor domain support, and limited [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=19&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found myself writing a simple brute forcer yesterday for windows integrated web authentication (NTLM and Kerberose) that worked over SSL.  An easy task with .NET, but was surprised when asked for a tool to do this.  Seems most of the tools out there don&#8217;t have SSL integrated (easy to fix), poor domain support, and limited Kerberos support.  Anyway&#8217;s, since others may find this simple tool of some value I figured I&#8217;d post it up on ye old blog.</p>
<p><a href="http://ph3d0rg.files.wordpress.com/NtlmWebBrute.rar">Source</a> or <a href="http://ph3d0rg.files.wordpress.com/NtlmWebBrute.msi">Installer</a></p>
<ul style="display:none;">
<li><a href="http://www.bats.org.au/?winnie_the_pooh_a_very_merry_pooh_year">Winnie the Pooh: A Very Merry Pooh Year ipod</a> <strong><a href="http://sallyhuang.com/?movie_herbie_fully_loaded">Herbie Fully Loaded ipod</a></strong></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=19&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/2007/01/06/http-authentication-brute-forcer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>Peach 2.0 Technology Preview</title>
		<link>http://phed.org/1999/01/30/peach-20-technology-preview/</link>
		<comments>http://phed.org/1999/01/30/peach-20-technology-preview/#comments</comments>
		<pubDate>Sat, 30 Jan 1999 08:00:00 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://phed.org/2007/07/31/peach-20-technology-preview/</guid>
		<description><![CDATA[.!. Prior to heading down for Blackhat/Defcon I wanted to post a public preview of the next version of Peach.  Consider this an alpha/development release with limited documentation, missing features, and no doubt many bugs. Over the next days/weeks I&#8217;ll be posting up looks at different features in Peach 2.0.  For now this will be the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=38&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="display:none;">.!.</div>
<p>Prior to heading down for Blackhat/Defcon I wanted to post a public preview of the next version of Peach.  Consider this an alpha/development release with limited documentation, missing features, and no doubt many bugs.</p>
<p>Over the next days/weeks I&#8217;ll be posting up looks at different features in Peach 2.0.  For now this will be the only tutorial/docs for the 2.0 series until we are closer to a full release.</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=149840">Download Peach 2.0 Technology Preview</a></p>
<p><strong>Here is whats new in Peach 2.0:</strong></p>
<ul>
<li>Separation between data generation/mutation and data modeling</li>
<li>Data modeling performed in XML creating lower bar of entry</li>
<li>Ability to create fuzzers w/o writing Python.</li>
<li>Built ontop of existing framework, can fully reuse any custom written Generators, Transformers, and Publishers</li>
<li>Assisted Data Modeling easier with XML specification</li>
<li>Convert WireShark packet captures to XML data models</li>
<li>Cracking of data based on data models</li>
</ul>
<p><strong>To come in Peach 2.0 as we approach release:</strong></p>
<ul>
<li>Inclusion of several simple state models</li>
<li>Expansion of Agent abilities</li>
<li>More complex data generation based on data modeling</li>
<li>Expose new features through language bindings (Peach.NET, .C, .J, etc)</li>
</ul>
<p><strong>What hasnt changed?</strong></p>
<ul>
<li>Fuzzers based on Peach 1.0 will continue to work with Peach 2.0</li>
<li>Instrumentation of clients to hook for fuzzing still very easy</li>
<li>Still customizable and extendable, built on-top of existing framework and interfaces so you can re-use existing code</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=38&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/1999/01/30/peach-20-technology-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>VMware control from Python</title>
		<link>http://phed.org/1999/01/30/vmware-control-from-python/</link>
		<comments>http://phed.org/1999/01/30/vmware-control-from-python/#comments</comments>
		<pubDate>Sat, 30 Jan 1999 08:00:00 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://phed.org/2007/11/04/vmware-control-from-python/</guid>
		<description><![CDATA[.!. Peach 2.0 development is blazing along, at some point I needed a python module to control a vmware server to allow for automatic start, stop and reverting.&#160; I figured I&#8217;d release this useful bit of code as a python module. Available here from vix import Vix import time vm = Vix() print "Connecting" vm.Connect() [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=39&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="display:none;">.!.</div>
<p>Peach 2.0 development is blazing along, at some point I needed a python module to control a vmware server to allow for automatic start, stop and reverting.&nbsp; I figured I&#8217;d release this useful bit of code as a python module.</p>
<p><a href="http://code.google.com/p/pyvmware/">Available here</a></p>
<pre>from vix import Vix
import time

<pre>vm = Vix()

print "Connecting"
vm.Connect()

print "Opening vm"
vm.Open("E:\\VMs\\Windows XP\\Windows XP Professional.vmx")

#print "Powering On vm"
#vm.PowerOn()
#print "Waiting a bit..."
#time.sleep(10)
#print "Powering off vm"
#vm.PowerOff()

print "Reverting to snapshot 0"
vm.GetRootSnapshot()
vm.RevertToSnapshot()

print "Sleeping"
time.sleep(10)

print "Disconnecting"
vm.Disconnect()</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=39&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/1999/01/30/vmware-control-from-python/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
		<item>
		<title>Python GDB Wrapper</title>
		<link>http://phed.org/1999/01/30/python-gdb-wrapper/</link>
		<comments>http://phed.org/1999/01/30/python-gdb-wrapper/#comments</comments>
		<pubDate>Sat, 30 Jan 1999 08:00:00 +0000</pubDate>
		<dc:creator>meddington</dc:creator>
				<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://phed.org/2008/05/14/python-gdb-wrapper/</guid>
		<description><![CDATA[.!. The first beta release of pygdb has been posted up. This is a pure python wrapper around GDB using the machine interface (MI). This allows control of GDB from python and was created as part of the effort to get Peach 2.1 running nice on Linux and OS X. Additionally, a new monitor UnixGdb [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=53&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="display:none;">.!.</div>
<p>The first beta release of pygdb has been posted up.  This is a pure python wrapper around GDB using the machine interface (MI).  This allows control of GDB from python and was created as part of the effort to get Peach 2.1 running nice on Linux and OS X.  Additionally, a new monitor UnixGdb has been checked into the 2.1 code tree for the brave.</p>
<p><a href="http://code.google.com/p/pygdb/">pygdb can be found here</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ph3d0rg.wordpress.com/53/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ph3d0rg.wordpress.com/53/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ph3d0rg.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ph3d0rg.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ph3d0rg.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phed.org&#038;blog=17471815&#038;post=53&#038;subd=ph3d0rg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phed.org/1999/01/30/python-gdb-wrapper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbe08276b6a34da8ed6cca60146d1831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">meddington</media:title>
		</media:content>
	</item>
	</channel>
</rss>
