blob: abcca01624c8bbe310b4a0ff88584cc6fa9d14d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# radare2
--------------------------------------------------------------------------------
# toc
------
|print|
|flags|
|help|
|relocation|
# print *print*
=======
pd <n> [@ <addr>] # print disassembly for <n> instructions
# with optional temporary seek to <addr>
# flags *flags*
=======
fs # list flag-spaces
fs <fs> # select flag-space <fs>
f # print flags of selected flag-space
# help *help*
=======
?*~<kw> # '?*' list all commands and '~' grep for <kw>
?*~... # .. and '...' get an interactive search hud
# relocation *relocation*
=============
> r2 -B <baddr> <exe> # open <exe> mapped to addr <baddr>
oob <addr> # reopen current file at <baddr>
--------------------------------------------------------------------------------
vim:ft=help:sts=2:et:tw=80:cc=80:fo+=t
|