minor log format

master
JoYo 2019-03-09 08:19:33 +00:00
parent 3505a51bc3
commit 750aedc81a
1 changed files with 1 additions and 1 deletions

View File

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