Bjchan9an

Results 6 comments of Bjchan9an

> > It seems that the format of the assembly have to be parsed by yourself from either r2pipe, objdump, or gcc -S > > i want use IDA pro,but...

Use ``GetMnem()`` and ``GetOpnd()`` to get the assembly code.

``idaapi.FlowChart(idaapi.get_func(func_addr))`` For more examples you can see, https://github.com/idapython/src/blob/master/examples/core/dump_flowchart.py

Thanks for your quick reply! Consider the case as follows, we expect to capture the information flow from ``buf`` (defined at line 7) to ``system()`` (line 11). ```C 1 #include...

If source code is available, I added additional command line parameters and calling of ``freopen()``, and successfully got the tainted information. But considering vuzzer is a binary-oriented fuzz tool, I’m...

Idb file: https://github.com/williballenthin/python-idb/tree/master/tests/data/v7.0b/x64/kernel32.i64 Address: ``0x689043FC`` In IDA Pro: ```py Python>list(idautils.CodeRefsTo(0x689043FC, 1)) [1754272045L, 1754296595L, 1754298927L, 1754299150L, 1754301314L, 1754312995L, 1754324259L, 1754334441L, 1754334461L, 1754334481L, 1754334501L, 1754334521L, 1754334541L, 1754334561L, 1754334574L, 1754446169L, 1754461433L, 1754480879L, 1754481688L,...