Rock Debugger 2.0.0.157

RockDebugger是一款32位的汇编级调试器,适用于Microsoft Windows 2000/XP/2003系统。具备插件支持、代码高亮显示、断点设置、表达式评估等功能,并可通过FDL文件查看API函数参数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Copyright © 2004-2006 Fisyuk Victor

Rock Debugger is a 32-bit assembler-level analyzing Debugger. Works under Microsoft Windows 2000/XP/2003.


In current version (Rock Debugger 2.0.0.157) the following features have been added:

  • plugins (object-oriented);
  • scrolling of the disassembler window by keys and mouse wheel.

Debugger has the next features

  • assembler сode highlighting
  • breakpoints on code execution, API functions and memory access. (There is support of conditional breakpoints. To set a condition used binary operations <, >, ==, !=, &&, || with corresponding meaning register names eax, ebx, etc. and memory access operations like dword [addr], word[addr], byte [addr].)
  • expressions evaluation. Expression may consist of the binary operations like +, - , *, /, %, unary operations &, , |, >>, << and memory access operations [addr], byte[addr], word[addr], dword[addr].
  • API functions arguments viewing. Functions and types description placed in the FDL files.
  • support registers, stack and process dump view.


FDL Editor


 

FDL Editor it is a program are specially designed for editing FDL files. Types and functions arguments in FDL files described with 'C' - like syntax. For example API function

	HANDLE CreateFile( LPCTSTR lpFileName, DWORD dwDesiredAccess,
		DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes,   
		DWORD dwCreationDistribution, DWORD dwFlagsAndAttributes, 
		HANDLE hTemplateFile )
you have to describe by the next way
	enum DESIRED_ACCESS
	{
		GENERIC_ALL = 0x10000000;
		GENERIC_EXECUTE = 0x20000000;
		GENERIC_READ = 0x80000000;
		GENERIC_WRITE = 0x40000000;
	}
	enum SHARE_MODE
	{
		FILE_SHARE_DELETE = 0x00000004;
		FILE_SHARE_READ = 0x00000001;
		FILE_SHARE_WRITE;
	}
	struct SECURITY_ATTRIBUTES
	{
		DWORD nLength;
		LPVOID lpSecurityDescriptor;
		BOOL bInheritHandle;
	}
	enum CREATION_DISTRIBUTION
	{
		CREATE_ALWAYS = 0x00000002;
		CREATE_NEW = 0x00000001;
		OPEN_ALWAYS = 0x00000004;
		OPEN_EXISTING = 0x00000003;
		TRUNCATE_EXISTING = 0x00000005;
	}
	enum FILE_FLAGS_AND_ATTRIBUTE
	{
		FILE_ATTRIBUTE_ARCHIVE = 0x00000020;
		FILE_ATTRIBUTE_COMPRESSED = 0x00000800;
		FILE_ATTRIBUTE_ENCRYPTED = 0x00004000;
		FILE_ATTRIBUTE_HIDDEN = 0x00000002;
		FILE_ATTRIBUTE_NORMAL = 0x00000080;
		FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 0x00002000;
		FILE_ATTRIBUTE_OFFLINE = 0x00001000;
		FILE_ATTRIBUTE_READONLY = 0x00000001;
		FILE_ATTRIBUTE_SYSTEM = 0x00000004;
		FILE_ATTRIBUTE_TEMPORARY = 0x00000100;
		FILE_FLAG_BACKUP_SEMANTICS = 0x02000000;
		FILE_FLAG_DELETE_ON_CLOSE = 0x04000000;
		FILE_FLAG_FIRST_PIPE_INSTANCE = 0x00080000;
		FILE_FLAG_NO_BUFFERING = 0x20000000;
		FILE_FLAG_OPEN_NO_RECALL = 0x00100000;
		FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000;
		FILE_FLAG_OVERLAPPED = 0x40000000;
		FILE_FLAG_POSIX_SEMANTICS = 0x01000000;
		FILE_FLAG_RANDOM_ACCESS = 0x10000000;
		FILE_FLAG_SEQUENTIAL_SCAN = 0x08000000;
		FILE_FLAG_WRITE_THROUGH = 0x80000000;
	}
	
	CreateFileA(
	LPCSTR lpFileName,
	DWORD dwDesiredAccess < bit_flags = DESIRED_ACCESS >,
	DWORD dwShareMode < bit_flags = SHARE_MODE >,
	SECURITY_ATTRIBUTES* lpSecurityAttributes,
	DWORD dwCreationDisposition< sym_const = CREATION_DISTRIBUTION >,
	DWORD dwFlagsAndAttributes< bit_flags = FILE_FLAGS_AND_ATTRIBUTE >,
	HANDLE hTemplateFile )
sym_const means a variable is enumeration value, bit_flags means that a variable is combination of enumeration values.

FDL files can be uploaded to debugger and used for functions arguments viewing. For example

 

 

http://rockdbg.siteburg.com/main.php?lang=2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值