Update pwndbg/commands/checksec.py

pull/1942/head
Disconnect3d 2 years ago
parent 4a9a3de6d5
commit 49853b97bb

@ -19,7 +19,7 @@ def color_line(line: str) -> str:
def color_lines(output: str) -> str:
return NEW_LINE.join(list(map(color_line, output.split(NEW_LINE))))
return "\n".join(map(color_line, output.split(NEW_LINE)))
@pwndbg.commands.ArgparsedCommand("Prints out the binary security settings using `checksec`.")

Loading…
Cancel
Save