diff options
| author | Ajax <commial@gmail.com> | 2016-01-25 11:05:29 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-01-26 17:09:18 +0100 |
| commit | 455cfbe8b7aed7cb5be8e1b9aa1917a9f7d51821 (patch) | |
| tree | 58c354de7afe7b4b0ca6af923616941ba9c2e79e /example/asm/shellcode.py | |
| parent | 01b1f292c84d4cbda38b6c308fc7b1af52595cec (diff) | |
| download | miasm-455cfbe8b7aed7cb5be8e1b9aa1917a9f7d51821.tar.gz miasm-455cfbe8b7aed7cb5be8e1b9aa1917a9f7d51821.zip | |
BasicBlocks: update examples with the new API
Diffstat (limited to 'example/asm/shellcode.py')
| -rw-r--r-- | example/asm/shellcode.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/example/asm/shellcode.py b/example/asm/shellcode.py index 9dc5c6bc..11cf9a4d 100644 --- a/example/asm/shellcode.py +++ b/example/asm/shellcode.py @@ -76,8 +76,7 @@ if args.PE: # Print and graph firsts blocs before patching it for bloc in blocs: print bloc -graph = asmbloc.bloc2graph(blocs) -open("graph.dot", "w").write(graph) +open("graph.dot", "w").write(blocs.dot()) # Apply patches patches = asmbloc.asm_resolve_final(machine.mn, |