Skip to content

Commit

Permalink
v1.1 [ZeroNights Edition]
Browse files Browse the repository at this point in the history
Type Reconstruction:
- reconstruct type into IDA local types
- bugfixes

ObjectExplorer:
- auto structures for VTBL
- click on VTBL and jump to code
- ObjectExplorer hints for VTBL
- simple RTTI support
- bugfixes
  • Loading branch information
matrosov committed Nov 21, 2013
1 parent 433cf59 commit c8ba017
Show file tree
Hide file tree
Showing 12 changed files with 440 additions and 69 deletions.
Binary file not shown.
Binary file modified sources/HexRaysCodeXplorer.suo
Binary file not shown.
Binary file added sources/HexRaysCodeXplorer.v12.suo
Binary file not shown.
11 changes: 8 additions & 3 deletions sources/HexRaysCodeXplorer/CodeXplorer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
REhints <info@rehints.com>
All rights reserved.
============================================================================
==============================================================================
This file is part of HexRaysCodeXplorer
Expand All @@ -19,6 +19,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.
==============================================================================
*/


Expand Down Expand Up @@ -271,8 +273,8 @@ static bool idaapi decompile_func(vdui_t &vu)
static bool idaapi display_objects(void *ud)
{
vdui_t &vu = *(vdui_t *)ud;
search_vtbl();
custom_form_init();
search_objects();
object_explorer_form_init();

return true;
}
Expand Down Expand Up @@ -332,6 +334,9 @@ int idaapi init(void)
hotcode_dg = get_key_code(hotkey_dg); // convert the hotkey to binary form
hotcode_rt = get_key_code(hotkey_rt); // convert the hotkey to binary form

msg(
"\nHexRaysCodeXplorer plugin by @REhints loaded.\n\n\n");

return PLUGIN_KEEP;
}

Expand Down
4 changes: 3 additions & 1 deletion sources/HexRaysCodeXplorer/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
REhints <info@rehints.com>
All rights reserved.
============================================================================
==============================================================================
This file is part of HexRaysCodeXplorer
Expand All @@ -18,6 +18,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
==============================================================================
*/

#pragma once
Expand Down
4 changes: 3 additions & 1 deletion sources/HexRaysCodeXplorer/GraphBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
REhints <info@rehints.com>
All rights reserved.
============================================================================
==============================================================================
This file is part of HexRaysCodeXplorer
Expand All @@ -18,6 +18,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
==============================================================================
*/


Expand Down
4 changes: 3 additions & 1 deletion sources/HexRaysCodeXplorer/GraphBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
REhints <info@rehints.com>
All rights reserved.
============================================================================
==============================================================================
This file is part of HexRaysCodeXplorer
Expand All @@ -18,6 +18,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
==============================================================================
*/

#pragma once
Expand Down
4 changes: 2 additions & 2 deletions sources/HexRaysCodeXplorer/HexRaysCodeXplorer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v100</PlatformToolset>
<PlatformToolset>v110_xp</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v100</PlatformToolset>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
Expand Down
Loading

0 comments on commit c8ba017

Please sign in to comment.