From 61787b3597a91e86ca80ffc9dcab880b1d2a7466 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Sun, 12 Nov 2023 04:37:20 +0100 Subject: [PATCH] Update pwndbg/commands/checksec.py --- pwndbg/commands/checksec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/commands/checksec.py b/pwndbg/commands/checksec.py index f7fd44dc6..5e1df0b07 100755 --- a/pwndbg/commands/checksec.py +++ b/pwndbg/commands/checksec.py @@ -17,7 +17,7 @@ def color_line(line: str) -> str: def color_lines(output: str) -> str: - return "\n".join(map(color_line, output.split(NEW_LINE))) + return "\n".join(map(color_line, output.split("\n"))) @pwndbg.commands.ArgparsedCommand("Prints out the binary security settings using `checksec`.")