about summary refs log tree commit diff stats
path: root/miasm2/core/bin_stream_ida.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-45/+0
|
* Support python2/python3Fabrice Desclaux2019-03-051-4/+6
|
* changed self.shift to self.base_addressVikas Gupta2019-02-131-2/+2
|
* Examples/IDA: raise IOError on read out of rangeFabrice Desclaux2019-01-141-1/+5
|
* BinStreamIDA: fix readbsAjax2016-02-041-2/+2
|
* BinStream: use the wrapper on get_bytes for each bin streamAjax2016-01-081-1/+1
|
* BinStreamIDA: `getlen` is now lazy, and use the proper IDA APIAjax2015-02-271-1/+7
|
* bin_stream: clean code and update APIFabrice Desclaux2015-02-111-11/+3
| | | | | | | | | | | The __len__ cannot be used any more in bin_stream: Python returns an int object, which will cap values to 0x7FFFFFFF on 32 bit systems. A binary can have a base address higher than this, making it impossible to handle such programs. The __len__ is replaced by a call to getlen. Elfesteem needs an update to support 'max_addr' API in order to retrieve the elf/pe max virtual address.
* Add IDA bin_streamFabrice Desclaux2014-12-031-0/+41