diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-09-23 08:17:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-23 08:17:49 +0200 |
| commit | e37e481c7bdae0dbbeb5e07d0f943b4b3840f465 (patch) | |
| tree | 84a479a7ab6324f651d406226aef72afca89f7c9 /example | |
| parent | 5a039ca675a60d6de201cb0b89291ee2bd2304c4 (diff) | |
| parent | 523507835ed6789a9489120023b539f6ae82eb18 (diff) | |
| download | miasm-e37e481c7bdae0dbbeb5e07d0f943b4b3840f465.tar.gz miasm-e37e481c7bdae0dbbeb5e07d0f943b4b3840f465.zip | |
Merge pull request #1065 from serpilliere/fix_bytes_dll_names
Fix bytes dllname
Diffstat (limited to 'example')
| -rw-r--r-- | example/symbol_exec/dse_crackme.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/symbol_exec/dse_crackme.py b/example/symbol_exec/dse_crackme.py index 90774dc3..be9f4490 100644 --- a/example/symbol_exec/dse_crackme.py +++ b/example/symbol_exec/dse_crackme.py @@ -280,7 +280,7 @@ while todo: sb.run() except FinishOn as finish_info: print(finish_info.string) - if finish_info.string == b"OK": + if finish_info.string == "OK": # Stop if the expected result is found found = True break |