← 返回命令列表

Linux command

ida 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Open binary in IDA

ida [binary]

Run IDA in text mode

ida -T [binary]

Batch mode analysis

ida -B [binary]

Run script

ida -S[script.py] [binary]

Open 64-bit binary

ida64 [binary]

说明

IDA (Interactive DisAssembler) is a disassembler and debugger for analyzing binary executables. It's the industry standard for reverse engineering, malware analysis, and vulnerability research. IDA supports numerous processor architectures and file formats. It provides features like cross-references, function recognition, and an IDAPython scripting interface.

参数

-T
Text mode (no GUI).
-B
Batch mode (analyze and exit).
-A
Autonomous mode (auto-answer dialogs).
-S_script_
Run script on startup.
-L_logfile_
Log file.
-c
Create new database.
-o_database_
Output database file.

FAQ

What is the ida command used for?

IDA (Interactive DisAssembler) is a disassembler and debugger for analyzing binary executables. It's the industry standard for reverse engineering, malware analysis, and vulnerability research. IDA supports numerous processor architectures and file formats. It provides features like cross-references, function recognition, and an IDAPython scripting interface.

How do I run a basic ida example?

Run `ida [binary]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -T do in ida?

Text mode (no GUI).