32 lines
242 B
Markdown
32 lines
242 B
Markdown
|
# Radare2
|
||
|
|
||
|
## Usage
|
||
|
### Dynamic
|
||
|
```sh
|
||
|
r2 -d <binary>
|
||
|
```
|
||
|
* Analyze
|
||
|
```sh
|
||
|
aaa
|
||
|
```
|
||
|
* Show main
|
||
|
```sh
|
||
|
pdf @main
|
||
|
```
|
||
|
* Breakpoint
|
||
|
```sh
|
||
|
db 0xdeadbeef
|
||
|
```
|
||
|
* Show rbp-0x4
|
||
|
```sh
|
||
|
px @rbp-0x4
|
||
|
```
|
||
|
* Continue
|
||
|
```sh
|
||
|
dc
|
||
|
```
|
||
|
* Show registers
|
||
|
```sh
|
||
|
dr
|
||
|
```
|