<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>msecdbg Discussions Rss Feed</title><link>http://msecdbg.codeplex.com/Thread/List.aspx</link><description>msecdbg Discussions Rss Description</description><item><title>New Post: Major/Minor hash</title><link>http://msecdbg.codeplex.com/discussions/219302</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;The hashes are&amp;nbsp;32 bit numbers and it is encoded in hex, 32 memory addresses share the same property.&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;"&gt;The Major hash is calculated over the first five frames of a stand and does not include the offset from a symbol. This allows for stacks to have small variances to end up with the same hash. The Minor hash is calculated over the top 64 frames and includes offsets. So if you have two crashes with the same minor hash you know they have crashed at the exact same spot and most likely are the same issue. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>AndyRenk</author><pubDate>Thu, 03 May 2012 16:49:11 GMT</pubDate><guid isPermaLink="false">New Post: Major/Minor hash 20120503044911P</guid></item><item><title>New Post: Can't build 64bit msec.dll under .NET 4</title><link>http://msecdbg.codeplex.com/discussions/234982</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Binaries are shiped with the source code, there is a x64 verion in there.&lt;/p&gt;&lt;/div&gt;</description><author>AndyRenk</author><pubDate>Thu, 03 May 2012 16:44:39 GMT</pubDate><guid isPermaLink="false">New Post: Can't build 64bit msec.dll under .NET 4 20120503044439P</guid></item><item><title>New Post: Some documentation on the tool</title><link>http://msecdbg.codeplex.com/discussions/239128</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Slides from the presentation given at CanSecWest 2009&lt;/p&gt;
&lt;p&gt;&lt;a href="http://download.microsoft.com/download/7/2/8/728FE40F-93B6-47BD-B67D-78D04B63E27D/Automated%20Security%20Crash%20Dump%20Analysis.pptx"&gt;http://download.microsoft.com/download/7/2/8/728FE40F-93B6-47BD-B67D-78D04B63E27D/Automated%20Security%20Crash%20Dump%20Analysis.pptx&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>AndyRenk</author><pubDate>Thu, 03 May 2012 16:43:43 GMT</pubDate><guid isPermaLink="false">New Post: Some documentation on the tool 20120503044343P</guid></item><item><title>New Post: Arguments to debugWrapper script</title><link>http://msecdbg.codeplex.com/discussions/280326</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;span style="color: black; font-size: 10pt;"&gt;I hope the following example helps clarify the issue.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;"&gt;debuggerWrapper.cmd takes 5 arguments&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span style="color: black; font-size: 10pt;"&gt;The program to debug&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: black; font-size: 10pt;"&gt;The command line to the program&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: black; font-size: 10pt;"&gt;The path to the file being tested&amp;nbsp;&lt;/span&gt;&amp;nbsp;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;&lt;span style="color: black; font-size: 10pt;"&gt;&lt;span style="color: black; font-size: 10pt;"&gt;This is needed because not all programs consume a file from the command line. Without this argument it would not be possible to copy the file to the repro location when a crash occurred.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;span style="color: black; font-size: 10pt;"&gt;&lt;/span&gt;&lt;span style="color: black; font-size: 10pt;"&gt;Max Time&amp;nbsp;in seconds&amp;nbsp;to debug the program&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: black; font-size: 10pt;"&gt;The directory to save crashes and repro files too.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;"&gt;In this example lets say you want to test the string literal search functionality of findstr.exe. The command line to this this is "findstr.exe /C:string filename". You have created a file named:\Files\TemplateFile.txt that you want to use as the file. If the debuggerWrapper detects a problem you want the files saved to c:\repro. To Run this scenario you would use the following command line.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;"&gt;DebuggerWrapper.cmd %systemdir%\system32\findstr.exe "/C:string C:\Files\TemplateFile.txt" C:\File\TempalteFile.txt 5 C:\repro&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>AndyRenk</author><pubDate>Thu, 03 May 2012 16:32:00 GMT</pubDate><guid isPermaLink="false">New Post: Arguments to debugWrapper script 20120503043200P</guid></item><item><title>New Post: Arguments to debugWrapper script</title><link>http://msecdbg.codeplex.com/discussions/280326</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi, I think the debugWrapper script is going to be useful to me. Would anyone be able to explain these two parameters to the script?&lt;/p&gt;
&lt;p&gt;@REM&amp;nbsp; ^%~2 = command line arguments including tempate name if needed. I.E. &amp;quot;/C:search&amp;quot; TemplateFile.txt&lt;br&gt;
@REM&amp;nbsp; ^%~3 = Temple file to process.&lt;/p&gt;
&lt;p&gt;What is a template file supposed to be, and which parameter number should it be? Which parameter number should the input file, that causes an application crash, be? I'm a bit confusion by the repetition of &amp;quot;template&amp;quot; in parameters 2 and 3.&lt;/p&gt;
&lt;p&gt;Thanks for the help!&lt;/p&gt;
&lt;/div&gt;</description><author>heykart</author><pubDate>Mon, 21 Nov 2011 22:07:02 GMT</pubDate><guid isPermaLink="false">New Post: Arguments to debugWrapper script 20111121100702P</guid></item><item><title>New Post: Some documentation on the tool</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=239128</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In the introduction to the tool, it is mentioned that more details are provided in the following .pptx file, but I could not get any file. I am looking for details on how this tools classifies the vulnerability as highly/less exploitable i.e. what are the
 parameters that are considered. Pointer to any articles or blog entries are appreciated.&lt;/p&gt;
&lt;p&gt;thanks &amp;amp; regards&lt;/p&gt;
&lt;p&gt;-sanjay&lt;/p&gt;
&lt;/div&gt;</description><author>tosanjay</author><pubDate>Tue, 21 Dec 2010 15:46:25 GMT</pubDate><guid isPermaLink="false">New Post: Some documentation on the tool 20101221034625P</guid></item><item><title>New Post: Can't build 64bit msec.dll under .NET 4</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=234982</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I get this error when trying to load MSECDbgExts64 in Visual C&amp;#43;&amp;#43; 2008 express&amp;nbsp;:&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000cc"&gt;&lt;strong&gt;&lt;span style="text-decoration:underline"&gt;The project consists entirely of configurations that require support for platforms which are not installed on this machine.&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000cc"&gt;I think it has something to do with the latest version of the windbg SDK for win 7 and .NET framework 4. Any thoughts? Has anyone tried this and have it work?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I was able to build&amp;nbsp;&amp;nbsp;MSECDbgExts32 but that dll isn't compatible with the 64bit version of the debugger I installed on my OS (win 7 home premium).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;EDIT: Never mind, I saw the readme caveat that that express edition of C&amp;#43;&amp;#43; won't work for the 64bit.&lt;/p&gt;
&lt;/div&gt;</description><author>puckaby</author><pubDate>Wed, 17 Nov 2010 07:53:53 GMT</pubDate><guid isPermaLink="false">New Post: Can't build 64bit msec.dll under .NET 4 20101117075353A</guid></item><item><title>New Post: Major/Minor hash</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=219302</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm a little confused about this major and minor hash. Why does it&amp;nbsp;look like a memory address? What exactly is being hashed? And what's&amp;nbsp;the difference between major and minor?&lt;/p&gt;&lt;/div&gt;</description><author>thebogman87</author><pubDate>Tue, 13 Jul 2010 14:15:07 GMT</pubDate><guid isPermaLink="false">New Post: Major/Minor hash 20100713021507P</guid></item><item><title>New Post: How to compile windbg extension code for windows device driver using DDK.</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=203658</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am facing problem, while I am writting and compiling code for windbg. I am new to windbg extension code writting.&lt;/p&gt;
&lt;p&gt;I need to know basic steps to compile code using DDK.&lt;/p&gt;
&lt;p&gt;If anyone have some good example of it, pl. share with me. My id is &lt;a href="mailto:callforkumar@yahoo.com"&gt;callforkumar@yahoo.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Raj&lt;/p&gt;&lt;/div&gt;</description><author>rajdesire</author><pubDate>Wed, 03 Mar 2010 12:48:31 GMT</pubDate><guid isPermaLink="false">New Post: How to compile windbg extension code for windows device driver using DDK. 20100303124831P</guid></item><item><title>New Post: Installing/Running/Using - How?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=60464</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi tsp,&lt;/p&gt;
&lt;p&gt;You issue that command from inside WinDbg.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In answer to your other question, the only tool you need to use !exploitable is the Windows Debugger (WinDbg or the command line equivalents).&lt;/p&gt;
&lt;p&gt;--Dave&lt;/p&gt;&lt;/div&gt;</description><author>DaveWeinstein</author><pubDate>Mon, 20 Jul 2009 17:40:07 GMT</pubDate><guid isPermaLink="false">New Post: Installing/Running/Using - How? 20090720054007P</guid></item><item><title>New Post: Installing/Running/Using - How?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=60464</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;I went through readme and it says to use !load winext\MSEC.dll to load !exploitable to windbg. I have no clue from where I should initiate this command. Readme appears to be very high level document to me. Can you explain how to load this dll to windbg? Also, Can I use Vista to load w2k3 symbols to read crash dump on Windows 2003? Do we require VC2008 ++ to use !exploitable?&lt;/p&gt;
&lt;p&gt;TIA&lt;/p&gt;&lt;/div&gt;</description><author>tsp</author><pubDate>Fri, 17 Jul 2009 17:50:09 GMT</pubDate><guid isPermaLink="false">New Post: Installing/Running/Using - How? 20090717055009P</guid></item><item><title>New Post: Is /GS violation really exploitable?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=62165</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Jim,&lt;/p&gt;
&lt;p&gt;The /GS stack protection is considered defense in depth. It is bad practice to depend on defense in depth mechanisms, because that removes the &amp;quot;in depth&amp;quot;. Compile them in, turn them on, but don't allow their existence to be used as a rationale for leaving vulnerable code in place.&lt;/p&gt;
&lt;p&gt;To&amp;nbsp;use an analogy, the fact that I have airbags in my car does not mean I shouldn't worry about the fact that my brakes don't work.&lt;/p&gt;
&lt;p&gt;In the case of a /GS violation, we know that there is an unconstrained (or improperly constrained) copy onto the stack. If the state of the art is such that an attacker is able to evade the version of /GS that the application was compiled against, then the attacker has the ability to get remote execution of code.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; --Dave&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>DaveWeinstein</author><pubDate>Mon, 13 Jul 2009 23:31:10 GMT</pubDate><guid isPermaLink="false">New Post: Is /GS violation really exploitable? 20090713113110P</guid></item><item><title>New Post: Installing/Running/Using - How?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=60464</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Gunny,&lt;/p&gt;
&lt;p&gt;The compiled debugger extensions are actually a DLL, which is loaded into the Windows Debugger (WinDbg). You can find instructions on how to use it in the readme file included in the package.&lt;/p&gt;
&lt;p&gt;--Dave&lt;/p&gt;&lt;/div&gt;</description><author>DaveWeinstein</author><pubDate>Mon, 13 Jul 2009 23:26:42 GMT</pubDate><guid isPermaLink="false">New Post: Installing/Running/Using - How? 20090713112642P</guid></item><item><title>New Post: Is /GS violation really exploitable?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=62165</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;I fuzzed a network application, and !exploitable gave me this analysis of the crash dump:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Exploitability Classification: EXPLOITABLE&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Recommended Bug Title: Exploitable - Stack Buffer Overrun (/GS Exception) starting at &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;An overrun of a protected stack buffer has been detected. This is considered exploitable, and must be fixed.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;My questions is:&amp;nbsp; If this was detected by the /GS stack protection, then is it really exploitable?&amp;nbsp; Isn't GS doing its job, and preventing this from being exploitable?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Thanks!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;Jim&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:10pt"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>jvonder</author><pubDate>Fri, 10 Jul 2009 20:39:28 GMT</pubDate><guid isPermaLink="false">New Post: Is /GS violation really exploitable? 20090710083928P</guid></item><item><title>New Post: Installing/Running/Using - How?</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=60464</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have downloaded the MSEC Debugger Extensins 1.0.6 package, but it contains no executables (.exe) files in it.&lt;/p&gt;
&lt;p&gt;How do I install or run or use it?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Gunny&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>tahilg</author><pubDate>Wed, 24 Jun 2009 01:59:55 GMT</pubDate><guid isPermaLink="false">New Post: Installing/Running/Using - How? 20090624015955A</guid></item><item><title>New Post: Command options for !exploitable</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=56156</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Sumit,&lt;/p&gt;
&lt;p&gt;Sorry for the long delay, I've got a batch file for you though, just take the below, throw it in notepad, and then save it as a .bat.&amp;nbsp; Let us know if you have any questions.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Jason&lt;/p&gt;
&lt;p&gt;Code begins==&amp;gt;&lt;/p&gt;
&lt;pre&gt;@echo off
setlocal ENABLEEXTENSIONS
@REM get local Path of script
for /F %%I in (&amp;quot;%0&amp;quot;) do set localDir=%%~dpI

@REM Check for MSEC.dll in current directory, and in script directory
if not exist .\msec.dll (
	if not exist %localDir%\msec.dll (
		echo.
		echo MSEC.dll not in current directory, please copy MSEC.dll locally and 
		echo rerun classify.bat.
		echo.
		goto error
	) else (
		set msecPath=%localdir%\msec.dll
	)
) else (
	set msecPath=.\msec.dll
)

@REM Check that cdb.exe is in the path or local directory
WHERE /Q cdb.exe
IF  ERRORLEVEL 1 (
    echo.
    echo cdb.exe was not found in the local directory or path
    echo.
    goto error
  )

@REM Validate First Parameter 
if /i &amp;quot;%~1&amp;quot; EQU &amp;quot;&amp;quot; goto Usage
if /i &amp;quot;%~1&amp;quot; EQU &amp;quot;/?&amp;quot; goto Usage
if /i &amp;quot;%~1&amp;quot; EQU &amp;quot;-?&amp;quot; goto Usage
if /i &amp;quot;%~1&amp;quot; EQU &amp;quot;/help&amp;quot; goto Usage
if /i &amp;quot;%~1&amp;quot; EQU &amp;quot;-help&amp;quot; goto Usage
if not exit &amp;quot;%~1&amp;quot; (
	echo.
    echo &amp;quot;%~1&amp;quot; could not be found.
    echo.
    goto error
)

@REM Validate second Parameter
if /i &amp;quot;%~2&amp;quot; EQU &amp;quot;&amp;quot; goto Usage
if exist &amp;quot;%~2&amp;quot; (
  dir /a:d &amp;quot;%~2&amp;quot; &amp;gt; nul
  IF  ERRORLEVEL 1 (
    echo.
    echo &amp;quot;%~2&amp;quot; is a file, the second paremeter should be a directory
    echo.
    goto error
  )
)

@REM ERROR Checking Is Over
set Hash=
set Type=
set Exploitability=
set tempLog=.\ExploitableLog-%random%.Log

cdb -z &amp;quot;%~1&amp;quot; -a%msecPath% -c &amp;quot;.symfix+; .reload; .logopen \&amp;quot;%tempLog%\&amp;quot;;!exploitable -m;.logclose;q&amp;quot;

for /f &amp;quot;tokens=1* delims=:&amp;quot; %%a in (%tempLog%) do (
	for /f &amp;quot;tokens=1*&amp;quot; %%c in (&amp;quot;%%b&amp;quot;) do (
	   if /i &amp;quot;%%a&amp;quot; EQU &amp;quot;MAJOR_HASH&amp;quot; set MajorHash=%%c
	   if /i &amp;quot;%%a&amp;quot; EQU &amp;quot;MINOR_HASH&amp;quot; set MinorHash=%%c
	   if /i &amp;quot;%%a&amp;quot; EQU &amp;quot;SHORT_DESCRIPTION&amp;quot; set Type=%%c
	   if /i &amp;quot;%%a&amp;quot; EQU &amp;quot;CLASSIFICATION&amp;quot; set Exploitability=%%c
	)
)

set ResultDir=%~2\%CrashDir%\%Exploitability%\%type%\%MajorHash%\%MinorHash%
md &amp;quot;%ResultDir%&amp;quot;
copy /b /y &amp;quot;%~1&amp;quot; &amp;quot;%ResultDir%&amp;quot;
copy /b /y %tempLog% &amp;quot;%ResultDir%&amp;quot;
del /q %tempLog%
goto end

:usage
Echo classify.bat ^ ^
echo.
echo Classify.bat will place the specified dump and log into a directory structure as follows:
echo.
echo ^\^\^\^
echo.
echo Examples:
echo ^\EXPLOITABLE\WriteAV\0x6e05193a\0x7505193a
echo ^\PROBABLY_EXPLOITABLE\TaintedDataControlsCodeFlow\0x6e05193a\0x7505193a
echo ^\UNKNOWN\PossibleStackCorruption\0x6e05193a\0x7505193a
echo.
echo Classify.bat requires MSEC.dll to be in the current directory and cdb to be 
echo in the path.
echo.
echo To easily run classify.bat against a set of dumps try the following command:
echo.
echo for /R . ^%%a in (*.dmp) do classify.bat ^%%a C:\Crashes
echo.
goto error
:error
exit /b 1
:end
exit /b 0&lt;/pre&gt;&lt;/div&gt;</description><author>jasoshi</author><pubDate>Fri, 19 Jun 2009 18:25:46 GMT</pubDate><guid isPermaLink="false">New Post: Command options for !exploitable 20090619062546P</guid></item><item><title>New Post: Command options for !exploitable</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=56156</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Can you please provide some more information about command usage of this extension? I have more than 100 crash dump files to analyze. Can you tell me the Command line options to analyze all the 100 dump files using a single command / batch file&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Sumit&lt;/p&gt;&lt;/div&gt;</description><author>sumitkchawla</author><pubDate>Wed, 13 May 2009 10:33:11 GMT</pubDate><guid isPermaLink="false">New Post: Command options for !exploitable 20090513103311A</guid></item><item><title>New Post: Welcome</title><link>http://msecdbg.codeplex.com/Thread/View.aspx?ThreadId=51142</link><description>&lt;div style="line-height: normal;"&gt;Welcome to the MSEC Debugger Extensions CodePlex project, including !exploitable Crash Analyzer.&lt;br&gt;
&lt;br&gt;
Please use the discussion area to report bugs, and post noteworthy comments about tool improvements and recommendations.
&lt;/div&gt;</description><author>jasoshi</author><pubDate>Tue, 24 Mar 2009 17:47:10 GMT</pubDate><guid isPermaLink="false">New Post: Welcome 20090324054710P</guid></item></channel></rss>