diff options
| author | _Frky <degoerdf@imag.fr> | 2018-06-20 14:51:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-20 14:51:50 +0200 |
| commit | 1c64ca68ff3ad2985d2c89b4b8a8e13ec282c0e1 (patch) | |
| tree | c2bca69bdf7b9b2fa00ee9224639af6c4ce32171 | |
| parent | 0adddb12a7410c4bbdd6ee79252e9bf05ca22818 (diff) | |
| download | miasm-1c64ca68ff3ad2985d2c89b4b8a8e13ec282c0e1.tar.gz miasm-1c64ca68ff3ad2985d2c89b4b8a8e13ec282c0e1.zip | |
Update README.md
Proposed fix for Issue #775
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md index 118051df..2ad1a3e8 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Disassembling the shellcode at address `0`: >>> machine = Machine('x86_32') >>> mdis = machine.dis_engine(c.bin_stream) >>> blocks = mdis.dis_multiblock(0) ->>> for block in blocks: +>>> for block in blocks.blocks: ... print block ... loc_0000000000000000:0x00000000 @@ -269,7 +269,7 @@ Initializing the IR pool: ``` >>> ira = machine.ira() ->>> for block in blocks: +>>> for block in blocks.blocks ... ira.add_block(block) ... ``` @@ -440,7 +440,7 @@ An auto-generated documentation is available [here](http://miasmdoc.ajax.re). Obtaining Miasm =============== -* Clone the repository: [Miasm on GitHub](https://github.com/serpilliere/miasm) +* Clone the repository: [Miasm on GitHub](https://github.com/cea-sec/miasm/) * Get one of the Docker images at [Docker Hub](https://registry.hub.docker.com/u/miasm/) Software requirements |