<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="http://www.woodmann.com/collaborative/tools/skins/common/feed.css?97"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.woodmann.com/collaborative/tools/index.php/Special:FeedListing/IDA_Extensions/feed?recursive=1&amp;feed_type=atom</id>
		<title>Collaborative RCE Tool Library - IDA Extensions (including sub-categories)</title>
		<link rel="self" type="application/atom+xml" href="http://www.woodmann.com/collaborative/tools/index.php/Special:FeedListing/IDA_Extensions/feed?recursive=1&amp;feed_type=atom"/>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Special:FeedListing/IDA_Extensions/feed?recursive=1&amp;feed_type=atom"/>
		<updated>2009-11-21T19:55:15Z</updated>
		<subtitle>Update Notification Feed for Category: IDA Extensions (and its sub-categories)</subtitle>
		<generator>MediaWiki 1.11.2 via dELTA feed generator</generator>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/IDA_Stealth</id>
		<title>Tool Updated: IDA Stealth</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/IDA_Stealth"/>
				<updated>2009-11-15T23:45:08Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Tool_Hiding_Tools&quot;&gt;Tool Hiding Tools&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.1&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;November 15, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;IDA Stealth is a plugin which aims to hide the IDA debugger from most common anti-debugging techniques. The plugin is composed of two files, the plugin itself and a dll which is injected into the debuggee as soon as the debugger attaches to the process. The injected dll is actually responsible for implementing most of the stealth techniques either by hooking syscalls or by patching some flags in the remote process.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/CodeDoctor</id>
		<title>Tool Updated: CodeDoctor</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/CodeDoctor"/>
				<updated>2009-11-12T16:24:49Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Deobfuscation_Tools&quot;&gt;Deobfuscation Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:OllyDbg_Extensions&quot;&gt;OllyDbg Extensions&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Resource_Editors&quot;&gt;Resource Editors&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Unpacking_Tools&quot;&gt;Unpacking Tools&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;0.90&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;November 12, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;&amp;lt;nowiki&amp;gt;CodeDoctor is a plugin for Olly and IDA.&lt;br /&gt;&lt;br /&gt;History:&lt;br /&gt;11.11.2009 - 0.90 - initial public release&lt;br /&gt;&lt;br /&gt;________________________________________________________________________________&lt;br /&gt;Functions:&lt;br /&gt;&lt;br /&gt;1) Deobfuscate&lt;br /&gt;&lt;br /&gt;Select instructions in disasm window and execute this command. It will try &lt;br /&gt;to clear the code from junk instructions.&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;Original:&lt;br /&gt;00874372    57                      PUSH EDI                                     &lt;br /&gt;00874373    BF 352AAF6A             MOV EDI,6AAF2A35&lt;br /&gt;00874378    81E7 0D152A41           AND EDI,412A150D&lt;br /&gt;0087437E    81F7 01002A40           XOR EDI,402A0001&lt;br /&gt;00874384    01FB                    ADD EBX,EDI                                 &lt;br /&gt;00874386    5F                      POP EDI                                     &lt;br /&gt;&lt;br /&gt;Deobfuscated:&lt;br /&gt;00874372    83C3 04                 ADD EBX,4&lt;br /&gt;&lt;br /&gt;________________________________________________________&lt;br /&gt;&lt;br /&gt;2) Deobfuscate - Single Step&lt;br /&gt;&lt;br /&gt;This works like previous command, but does one transformation at a time&lt;br /&gt;_______________________________________________________&lt;br /&gt;&lt;br /&gt;3) Move NOPs to bottom&lt;br /&gt;&lt;br /&gt;Converts this:&lt;br /&gt;&lt;br /&gt;00874396    50                      PUSH EAX&lt;br /&gt;00874397    90                      NOP&lt;br /&gt;00874398    90                      NOP&lt;br /&gt;00874399    52                      PUSH EDX                                    &lt;br /&gt;0087439A    BA 3F976B00             MOV EDX,somesoft.006B973F&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;to this:&lt;br /&gt;&lt;br /&gt;00874396    50                      PUSH EAX&lt;br /&gt;00874397    52                      PUSH EDX                                    &lt;br /&gt;00874398    BA 3F976B00             MOV EDX,somesoft.006B973F&lt;br /&gt;0087439D    90                      NOP&lt;br /&gt;0087439E    90                      NOP&lt;br /&gt;&lt;br /&gt;Limitations: it breaks all jumps and calls pointing inwards&lt;br /&gt;________________________________________________________&lt;br /&gt;&lt;br /&gt;4) Undo / Redo&lt;br /&gt;&lt;br /&gt;Undo or Redo last operation (from one of the above functions)&lt;br /&gt;&lt;br /&gt;________________________________________________________&lt;br /&gt;&lt;br /&gt;5) Retrieve Jumpy function&lt;br /&gt;&lt;br /&gt;This will statically parse instructions and follow all jumps. This is useful&lt;br /&gt;for situations, when program jumps here and there and here and there... When&lt;br /&gt;it encounters some instruction, that can't be followed, it stop and copies&lt;br /&gt;all parsed instruction to an allocated place in memory.&lt;br /&gt;&lt;br /&gt;Use settings to set some parameters:&lt;br /&gt;Step over calls - if set, it will step over calls, otherwise it will follow them&lt;br /&gt;Step over jccs - dtto, but for Jccs&lt;br /&gt;Deobfuscate - it will deobfuscate instruction, when it encounters Jcc, RET, &lt;br /&gt;  JMP reg/exp, CALL reg/exp; useful for multi-branch&lt;br /&gt;  &lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;Original:&lt;br /&gt;00874389   /EB 05                   JMP SHORT somesoft.00874390&lt;br /&gt;0087438B&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/TurboDiff</id>
		<title>Tool Updated: TurboDiff</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/TurboDiff"/>
				<updated>2009-10-15T14:25:10Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Executable_Diff_Tools&quot;&gt;Executable Diff Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.01&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;October 14, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Turbodiff is a binary diffing tool developed as an IDA plugin. It discovers and analyzes differences between the functions of two binaries.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/SiDAg</id>
		<title>Tool Updated: SiDAg</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/SiDAg"/>
				<updated>2009-08-31T16:01:12Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Signature_Creation_Tools&quot;&gt;IDA Signature Creation Tools&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.0&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;August 31, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;The is a GUI tool that helps beginners making IDA signatures from Obj files/ librarries and PAT files.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/IDA_Inject</id>
		<title>Tool Updated: IDA Inject</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/IDA_Inject"/>
				<updated>2009-07-19T05:01:34Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Code_Injection_Tools&quot;&gt;Code Injection Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.0.3&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;July 18, 2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;This plugin allows you to inject dlls into a debugged process, either prior to process creation or when the debugger is attached. The injected dll can then do some fancy stuff inside the debugged process.&lt;br /&gt;To realize dll injection before process creation, new import descriptors are added to the image import directory of the debuggee, whereas injection into an already running process is realized via shellcode injection, which in turn loads the dll in question.&lt;br /&gt;In either case, a full path to the dll can be supplied, so it is not necessary for the dll to be in the search path.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/BinDiff</id>
		<title>Tool Updated: BinDiff</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/BinDiff"/>
				<updated>2009-06-13T10:14:36Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Executable_Diff_Tools&quot;&gt;Executable Diff Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2.1&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;A very powerful executable file diffing tool, in the form of an IDA Pro plugin.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/IDAAPIHelp</id>
		<title>Tool Added: IDAAPIHelp</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/IDAAPIHelp"/>
				<updated>2009-06-04T20:13:26Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;0.3&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;October 17, 2006&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;IDAAPIHelp is a small IDAPython script, that saves time when searching for API Information while e.g. analyzing a malware with IDA Pro. It looks at cursor position for a valid api call and if found it tries to show you the eligible API Info from the provided helpfile.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/MFC42Ord2FuncNames</id>
		<title>Tool Added: MFC42Ord2FuncNames</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/MFC42Ord2FuncNames"/>
				<updated>2009-06-04T20:09:38Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;

&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;June 03, 2007&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;MFC42Ord2FuncNames is a small IDAPython script which converts MFC42 functions into its realnames. Normally IDA Pro should do this automatically, but in some cases the IDA auto-analysis fails. Watch the short flash movie included in the package for details.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/ClassAndInterfaceToNames</id>
		<title>Tool Added: ClassAndInterfaceToNames</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/ClassAndInterfaceToNames"/>
				<updated>2009-06-04T20:06:28Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;

&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;June 16, 2007&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;This small IDAPython script scans an idb file for class and interfaces UUIDs and creates the matching structure and its name. Unfortunately IDA doesn't do this automatically, thus this little helper. It personally helped me alot, while reversing several malwares using the COM interface, e.g. for browser or outlook manipulation, BITS file transfer or dumping the protected storage. The script was tested with IDAPython v0.9.0 and Python 2.4. Make sure to copy interfaces.txt + classes.txt + ClassAndInterfaceToNames.py to IDADIR, e.g. C:\Program Files\IDA&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/VtablesStructuresFromPSDK2003R2</id>
		<title>Tool Added: VtablesStructuresFromPSDK2003R2</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/VtablesStructuresFromPSDK2003R2"/>
				<updated>2009-06-04T20:03:55Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;

&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;July 16, 2007&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;This small IDAPython script includes all vtable structures that can be found in the files of the Microsoft PSDK 2003-R2. After running the script in IDA it adds these vtable structures to an IDB file. This will save time while reconstructing COM code.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Class_Informer</id>
		<title>Tool Updated: Class Informer</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Class_Informer"/>
				<updated>2009-04-25T15:55:13Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:COM_Tools&quot;&gt;COM Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.01&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;April 2, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Scans an MSVC 32bit target IDB for vftables with C++ RTTI, and MFC RTCI type data.&lt;br /&gt;Places structure defs, names, labels, and comments to make more sense of class vftables (&amp;quot;Virtual Function Table&amp;quot;) and make them read&lt;br /&gt;easier as an aid to reverse engineering.&lt;br /&gt;Creates a list window with found vftables for browsing.&lt;br /&gt;&lt;br /&gt;RTTI (&amp;quot;Run-Time Type Identification&amp;quot;):&lt;br /&gt;http://en.wikipedia.org/wiki/RTTI&lt;br /&gt;&lt;br /&gt;RTCI (&amp;quot;Run Time Class Information&amp;quot;) the MFC forerunner to &amp;quot;RTTI&amp;quot;:&lt;br /&gt;http://msdn.microsoft.com/en-us/library/fych0hw6(VS.80).aspx&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;See also screenshot example of vftable info set by plug-in below.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/IDACompare</id>
		<title>Tool Updated: IDACompare</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/IDACompare"/>
				<updated>2009-03-06T09:20:11Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:Executable_Diff_Tools&quot;&gt;Executable Diff Tools&lt;/a&gt;, &lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;5.4&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;March 5, 2009&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;IDACompare is a plugin designed to compare and match up equivalent functions across two IDA databases. IDACompare was primarily designed for analyzing changes across malcode variants, it should also find good use when conducting patch analysis.&lt;br /&gt;&lt;br /&gt;Once function matches have been made, names can be ported across disassemblies, or sequentially renamed in both.&lt;br /&gt;&lt;br /&gt;Project also implements a signature scanner, letting you build your own listing of known functions.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Advanced_obj_and_lib_IDA_signature_ripper</id>
		<title>Tool Updated: Advanced obj and lib IDA signature ripper</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Advanced_obj_and_lib_IDA_signature_ripper"/>
				<updated>2009-01-29T23:35:11Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Signature_Creation_Tools&quot;&gt;IDA Signature Creation Tools&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.0&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;May 23, 2007&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;It loads obj and lib (COFF format) files signature to ida database.&lt;br /&gt;&lt;br /&gt;It identifies so many labels more than flair signatures.&lt;br /&gt;&lt;br /&gt;FLIRT signature creation not possible for some situation, for example you can try to create flirt signature for flexlm libs, but this plugin will work in such situations too!&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Ordinal_imports/exports_resolver</id>
		<title>Tool Updated: Ordinal imports/exports resolver</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Ordinal_imports/exports_resolver"/>
				<updated>2009-01-26T15:00:46Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Name says all?&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Com_helper</id>
		<title>Tool Updated: Com helper</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Com_helper"/>
				<updated>2009-01-26T14:59:24Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Improved version of DataRescue's com helper plugin.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Reveal_Imports</id>
		<title>Tool Updated: Reveal Imports</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Reveal_Imports"/>
				<updated>2008-11-04T17:51:39Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.0&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;November 4, 2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;The plugin reveals imports of a dumped process. It will come in handy when you need to analyze a dump without rebuilding the file using an external tool.&lt;br /&gt;&lt;br /&gt;Usage: put the plugin inside IDA plugin directory and to run the plugin hit ALT+z.&lt;br /&gt;Here is a screeshot. As you can see the plugin creates a new window filled with revealed imports.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/MIDA</id>
		<title>Tool Updated: MIDA</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/MIDA"/>
				<updated>2008-10-30T17:37:58Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;1.0.10&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;October 21, 2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;mIDA is a plugin for the IDA disassembler that can extract RPC interfaces from a binary file and recreate the associated IDL definition. mIDA is free and fully integrates with the latest version of IDA (5.0).&lt;br /&gt;This plugin can be used to :&lt;br /&gt;&lt;br /&gt;    * Navigate to RPC functions in IDA&lt;br /&gt;    * Analyze RPC function arguments&lt;br /&gt;    * Understand RPC structures&lt;br /&gt;    * Reconstruct an IDL definition file &lt;br /&gt;&lt;br /&gt;The IDL code generated by mIDA can be, most of the time, recompiled with the MIDL compiler from Microsoft (midl.exe).&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/PDB</id>
		<title>Tool Updated: PDB</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/PDB"/>
				<updated>2008-10-18T08:34:24Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;?&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;This is yet another extension built on original Datarescue`s PDB plugin.&lt;br /&gt;&lt;br /&gt;Main enhancements from original plugin:&lt;br /&gt;* Integrates advantages of Microsoft Debug Information Accessor (DIA). The&lt;br /&gt;  interface provided by DIA offers more complete description of executable&lt;br /&gt;  against DbgHelp(ImagHlp) API. If DIA server is not installed DbgHelp's engine&lt;br /&gt;  is used (use newest version possible to achieve best results).&lt;br /&gt;* Preserved names mangling on public symbols (ida still shows C prototype where&lt;br /&gt;  full ida typeinfo can't be successfully set).&lt;br /&gt;* Replication of complex types (struct, enum) and typedefs from PDB.&lt;br /&gt;* Scoped UDT members handled (inherited members and nested typedefs, structs&lt;br /&gt;  and enums).&lt;br /&gt;* Exact format to static data symbols and static struct members, forced code at&lt;br /&gt;  function start (extern symbols format preserved).&lt;br /&gt;* Full ida typeinfo to static symbols and struct members.&lt;br /&gt;* Names, exact format and full ida typeinfo to function arguments and local&lt;br /&gt;  symbols stored at frame, recursive traversal all nested sub-blocks of function&lt;br /&gt;  (with DIA only). Supported (both top and bottom) ebp- and esp-based frame&lt;br /&gt;  models, support for register variables and params was removed during testing&lt;br /&gt;  (see known problems and anomalies/#3).&lt;br /&gt;* Source lines import to idabase where file accessible (as anterior lines).&lt;br /&gt;* Foreign program databases support for importing data types only. Selective&lt;br /&gt;  filtering of unwanted types is offered before own storage. For this feature&lt;br /&gt;  call the plugin with argument 2 (use IDC command or edit plugins.cfg for that).&lt;br /&gt;* Alots of minor adjustments not worth to mention.&lt;br /&gt;* No UI (lazy) - always apply all features.&lt;br /&gt;&lt;br /&gt;Source code included.&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Mapgen</id>
		<title>Tool Added: Mapgen</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Mapgen"/>
				<updated>2008-10-18T08:30:57Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;0.985 beta&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;---------------------------------------------------------------------------&lt;br /&gt;map file exporter plugin for ida pro by servil version 0.985 beta&lt;br /&gt;---------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;the plugin extends mapfile generating to export better information into&lt;br /&gt;ollydbg. exported files can be processed by modified mapconv plugin included&lt;br /&gt;in this archive.&lt;br /&gt;&lt;br /&gt;features:&lt;br /&gt;  - imports comments as comments and labels as labels&lt;br /&gt;  - all segments&lt;br /&gt;  - relocated images (dlls) taken into account&lt;br /&gt;  - extended by exporting local variables, enums, struct offsets,&lt;br /&gt;    register variables and forced operands&lt;br /&gt;&lt;br /&gt;source code: http://sharemation.com/servil/idaplugs/mapgen-src.zip&lt;br /&gt;&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	<entry>
		<id>http://www.woodmann.com/collaborative/tools/index.php/Fubar</id>
		<title>Tool Added: Fubar</title>
		<link rel="alternate" type="text/html" href="http://www.woodmann.com/collaborative/tools/index.php/Fubar"/>
				<updated>2008-10-18T08:29:22Z</updated>
		
		<summary type="html">&lt;P&gt;&lt;B&gt;Listed in categories:&lt;/B&gt;&amp;nbsp;&lt;I&gt;&lt;a href=&quot;http://www.woodmann.com/collaborative/tools/index.php/Category:IDA_Extensions&quot;&gt;IDA Extensions&lt;/a&gt;&lt;/I&gt;&lt;/P&gt;&lt;p&gt;&lt;b&gt;Most recent version:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;0.982 beta&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Most recent release date:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;2008&lt;/i&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;---------------------------------------------------------------------------&lt;br /&gt;fubar plugin v0.982 eternal beta: post-analysis tasks for ida pro by servil&lt;br /&gt;supported ida versions: 4.90 and above till API change&lt;br /&gt;(tested on 5.2 without backward compatibility enforcement)&lt;br /&gt;---------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;various additional idabase formatting and describing, main units:&lt;br /&gt;&lt;br /&gt;    * resource parser and dereferencer&lt;br /&gt;    * mfc message map parser&lt;br /&gt;    * vcl object templates parser&lt;br /&gt;    * more... see main dialog for available steps, most jobs obvious enough&lt;br /&gt;&lt;/i&gt;
&lt;/p&gt;</summary>
			</entry>

	</feed>