• 大小: 21.13MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-19
  • 语言: 其他
  • 标签: OD  

资源简介

冰若° OD-2.0 窗口反汇编程序,可用插件非常实用反编人员必备软件

资源截图

代码片段和文件信息

////////////////////////////////////////////////////////////////////////////////
//                                                                            //
//                        SAMPLE PLUGIN FOR OLLYDBG                           //
//                                                                            //
//                   Copyright (C) 2001-2004 Oleh Yuschuk                     //
//                                                                            //
// This plugin allows to set up to 10 code bookmarks using keyboard shortcuts //
// or popup menus in Disassembler and then quickly return to one of the       //
// bookmarks using shortcuts popup menu or Bookmark window. Bookmarks        //
// are kept between sessions in .udd file.                                    //
//                                                                            //
// This code is distributed “as is“ without warranty of any kind expressed  //
// or implied including but not limited to warranty of fitness for any      //
// particular purpose. In no event will Oleh Yuschuk be liable to you for any //
// special incidental indirect consequential or any other damages caused   //
// by the use misuse or the inability to use of this code including any    //
// lost profits or lost savings even if Oleh Yuschuk has been advised of the //
// possibility of such damages. Or translated into English: use at your own  //
// risk!                                                                      //
//                                                                            //
// This code is free. You can modify this code include parts of it into your //
// own programs and redistribute modified code provided that you remove all   //
// copyright messages or if changes are significant enough substitute them  //
// with your own copyright.                                                   //
//                                                                            //
////////////////////////////////////////////////////////////////////////////////

// VERY IMPORTANT NOTICE: COMPILE THIS DLL WITH BYTE ALIGNMENT OF STRUCTURES
// AND UNSIGNED CHAR!

#include 
#include 
#include 

#include “plugin.h“

HINSTANCE        hinst;                // DLL instance
HWND             hwmain;               // Handle of main OllyDbg window
char             bookmarkwinclass[32]; // Name of bookmark window class

// OllyDbg supports and makes extensive use of special kind of data collections
// called sorted tables. A table consists of descriptor (t_table) and data. All
// data elements has same size and begin with a 3-dword header: address size
// and type. Table automatically sorts items by address overlapping is not
// allowed. Our bookmark table consists of elements of type t_bookmark.
typedef struct t_bookmark {
  ulong          index;                // Bookmark 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10752  2005-03-20 19:28  冰若° OD-2.0\LOADDLL.EXE

     文件          0  2015-02-14 03:09  冰若° OD-2.0\LoadMapEx_log.txt

     文件    1293780  2011-06-08 23:31  冰若° OD-2.0\OllyDBG.EXE

     文件      67892  2017-06-18 18:58  冰若° OD-2.0\OllyDbg.ini

     文件         47  2017-05-28 22:03  冰若° OD-2.0\result.txt

     文件     163379  2015-02-06 19:50  冰若° OD-2.0\StollyStructs.ini

     文件     698880  2015-12-31 15:39  冰若° OD-2.0\冰若.exe

     文件       6767  2014-09-20 16:25  冰若° OD-2.0\原版\ollydbg - 代码高亮方案.ini

     文件    1300992  2014-09-20 08:49  冰若° OD-2.0\原版\汉化原版\Ollydbg.exe

     文件      10476  2015-02-16 03:07  冰若° OD-2.0\原版\汉化原版\ollydbg.ini

     文件       5930  2006-02-13 16:56  冰若° OD-2.0\原版\汉化原版\汉化说明.txt

     文件    1117696  2004-05-23 01:10  冰若° OD-2.0\原版\英文原版\OLLYDBG.EXE

     文件       6810  2014-09-21 02:31  冰若° OD-2.0\原版\英文原版\ollydbg.ini

     文件        174  2010-08-28 05:55  冰若° OD-2.0\导入库\aclui.lib

     文件       1151  2010-08-28 05:55  冰若° OD-2.0\导入库\activeds.lib

     文件      43008  2004-06-18 06:30  冰若° OD-2.0\导入库\apachecore.lib

     文件      14400  2010-03-18 00:30  冰若° OD-2.0\导入库\atl.lib

     文件    2096128  2004-06-18 06:30  冰若° OD-2.0\导入库\bfc42.lib

     文件    2501632  2004-06-18 06:30  冰若° OD-2.0\导入库\bfc42d.lib

     文件        516  2010-08-28 05:55  冰若° OD-2.0\导入库\Cabinet.lib

     文件       2146  1998-05-13 00:00  冰若° OD-2.0\导入库\CAP.LIB

     文件       1373  2010-08-28 05:55  冰若° OD-2.0\导入库\CertAdm.lib

     文件       2560  2010-08-28 05:55  冰若° OD-2.0\导入库\cghelp.lib

     文件      13824  2007-05-01 16:38  冰若° OD-2.0\导入库\comctl32.lib

     文件       7196  1998-05-13 00:00  冰若° OD-2.0\导入库\COMDLG32.LIB

     文件        734  2010-08-28 05:55  冰若° OD-2.0\导入库\comsvcs.lib

     文件      10821  2010-08-28 05:55  冰若° OD-2.0\导入库\crypt32.lib

     文件        207  2010-08-28 05:55  冰若° OD-2.0\导入库\D2D1.lib

     文件       1024  2008-10-22 10:02  冰若° OD-2.0\导入库\dbgeng.lib

     文件      23040  2008-10-22 10:02  冰若° OD-2.0\导入库\dbghelp.lib

............此处省略215个文件信息

评论

共有 条评论