Skip to content

How to stop rose-recursive-disassemble from outputting CFG pointers? #193

Answered by matzke1
Cryspia asked this question in Q&A
Discussion options

You must be logged in to vote

$ rose-recursive-disassemble --no-bb-cfg-arrows a.out.

You could also use the bat-ana and bat-dis or bat-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.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by matzke1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants