V
Visual mode
(V! = panels, VV = fcngraph, VVV = callgraph)
Tips
-
You can use
h, j, k, l
orH, G, K, L
to move inside the visual mode, orTAB
to navigate -
Use
c
to toggle cursor mode. -
Use
p
to show different views inside visual mode. The different modes are normal, display offsets, minigraph and summary -
Use
/
to highlight searches in visual mode -
In hex view, press
p
to show disassembly. Pressingc
will enable cursor mode. Use the cursor mode to set breakpoints usingF2
. Can useB
also to set breakpoints -
Use
$
to toggle psuedo code inside visual mode -
In visual mode, pressing the number inside square brackets i.e
[1]
will move seek to that address. This generally applies to calls or jumps. Anything inside square brackets are used for quick navigation, i.e.[ga]
means press ga to seek to that addressess (inVV
mode) -
Seek backwards using
u
-
Use
.
in visual mode to jump back to where the seek (cursor) is. -
Use
??
in visual mode to get a HUD style panel (easier for beginners)
Panels V!
Hex view V
-
After loading hex view, use
p
to see this view -
Pressing
p
twice in this mode will show the stack and the registers in the same view. This is very helpful during debugging. -
In this mode, you can navigate and scroll through the stack/registers/assembly by using
c
(cursor) and TAB
vv
- Callgraph
VVV
orVV
(Can use-
or+
to zoom)