-
The I have read the document and tried multiple arguments, but it seems that none of them work (the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You could also use the
or
The benefit of using |
Beta Was this translation helpful? Give feedback.
$ rose-recursive-disassemble --no-bb-cfg-arrows a.out
.You could also use the
bat-ana
andbat-dis
orbat-dis-simple
tools like this:$ bat-ana --output=a.out.rba a.out && bat-dis --no-bb-cfg-arrows a.out.rba
or
$ bat-ana -q a.out | bat-dis -q --no-bb-cfg-arrows
The benefit of using
bat-ana
is that it creates a ROSE Binary Analysis (RBA) file on which many other ROSE tools operate and can often be faster than disassembling the specimen repeatedly for each tool.