- x64dbg 简体中文版(Jan 6 2024) - 吾爱破解 - 52pojie. cn
x64dbg 是一款开源的、目前仍在积极开发中的 x32 x64 位动态调试器。其界面及操作方法与 OllyDbg 类似,和 OllyDbg 不同的是它可以对 64 位程序进行调试。
- Commands — x64dbg documentation
x64dbg only supports integer in expressions Strings, Floating point numbers and SSE AVX data is not supported Therefore you cannot use [eax]=="abcd" operator to compare strings Instead, you can compare the first DWORD QWORD of the string, or use an appropriate plugin which provides such feature
- x64dbg使用技巧与实用插件合集 - 吾爱破解 - 52pojie. cn
本文是针对刚开始接触X64dbg的新人写的实用技巧和插件合集 前言 萌新一个,接触逆向时间不长,但因为很喜欢x64dbg这款调试器,所以花了一些时间去了解,x64dbg的这类帖子相对较少,本贴的初衷是希望其他新人在学习的时候可以多一些参考,少一些时间精力的浪费。
- Introduction — x64dbg documentation
Introduction¶ This section explains the basics of x64dbg Make sure to fully read this! Contents:
- Features — x64dbg documentation
GUI features¶ Intuitive and familiar, yet new user interface; IDA-like sidebar with jump arrows; IDA-like instruction token highlighter (highlight registers, commands, etc )
- Welcome to x64dbg’s documentation!
Suggested reads¶ If you came here because someone told you to read the manual, start by reading all sections of the introduction
- Command line — x64dbg documentation
1 argument: x64dbg filename exe will debug filename exe 2 arguments: x64dbg-p PID will attach to the process with PID PID 2 arguments: x64dbg filename exe cmdline will debug filename exe with cmdline as command line 3 arguments: x64dbg filename exe cmdline currentdir will debug filename exe with cmdline as command line and currentdir as
- Values — x64dbg documentation
In addition to the registers in the architecture, x64dbg provides the following registers: CAX, CBX, CCX, CDX, CSP, CBP, CSI, CDI, CIP These registers are mapped to 32-bit registers on 32-bit platform, and to 64-bit registers on 64-bit platform For example, CIP is EIP on 32-bit platform, and is RIP on 64-bit platform This feature is intended
|