forgot newline

master
JoYo 2019-02-24 06:19:41 +00:00
parent 91cf527253
commit 0562454923
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ def objdump(shellcode: bytes)->str:
opcodes = str()
for opcode in capstone.disasm(shellcode, 0):
opcodes += f'{opcode.mnemonic} {opcode.op_str}'
opcodes += f'{opcode.mnemonic} {opcode.op_str}\n'
return opcodes