Skip to content

Commit

Permalink
Removed GNU_STACK missing text
Browse files Browse the repository at this point in the history
  • Loading branch information
devx00 committed Oct 26, 2024
1 parent f28d3eb commit ce79e3e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,13 @@ The table below shows which release corresponds to each branch, and what date th
[2435]: https://github.com/Gallopsled/pwntools/pull/2435
[2437]: https://github.com/Gallopsled/pwntools/pull/2437

## 4.13.1 (`stable`)
## 4.13.2 (`stable`)

- [#2493][2493] Fix NX message falsely reporting GNU_STACK missing

[2493]: https://github.com/Gallopsled/pwntools/pull/2493

## 4.13.1

- [#2445][2445] Fix parsing the PLT on Windows
- [#2466][2466] Fix PLT emulation with Unicorn 2.1.0
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/elf/elf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2074,7 +2074,7 @@ def checksec(self, banner=True, color=True):
"NX:".ljust(12) + {
True: green("NX enabled"),
False: red("NX disabled"),
None: yellow("NX unknown - GNU_STACK missing"),
None: yellow("NX unknown"),
}[self.nx],
"PIE:".ljust(12) + {
True: green("PIE enabled"),
Expand Down

0 comments on commit ce79e3e

Please sign in to comment.