Yo
----- Original message -----
> Hey,
>
>
> I currently use Radare2 next from IDA Free and ImmunityDBG.
> I want to be (one day) be able to be pure R2.
> Anywho, thats why I post these two ideas.

Good. Lets read

> I know that r1 already had this. But I never figured out how to use it.
> CodeGraphing. And not just to a picture but to an OpenGL or SDL thing
> where I can scroll.

This is already done. It was presented by nibble. Im sure he can give you 
better hints about it. But basically you should do:

af  # analize code
ag > foo.dot
!xdot foo.dot

you can use graphviz to get a png. But xdot is written in python and its 
interactive, so you can easily hack to make kit do what u need.

>
> I'd like to see the function to export the bin. Like ImmunityDBG or
> OllyDBG does I use that to Unpack packers like UPX.

Uhm? Export the bin? You mean dump the process memory? This was done in r1 with 
!dump and !restore commands. In r2 you should do it manually by getting program 
maps (dm command) and printraw or printtofile that block.

Its already done, but you should understand the commands :) its more ortogonal. 
So you have to understand tools instead of actions. Like unix philosophy aims.

> Umm, and next from that all I'd like to see Decompiling like Boomerang
> or Hexrays does.

There's a script in r1 to use boomerang. It works fine and can be easily ported 
to r2. If you want to give a look :)

>
> Looking forward to the response.
> I guess it won't be in R2 till R2 1.0 heh

many things can be already done without having to explicitly be implemented. 
Thats why the commands are tools itself and can fit together to make what you 
need.

--pancake
_______________________________________________
radare mailing list
[email protected]
http://lists.nopcode.org/listinfo.cgi/radare-nopcode.org

Reply via email to