Skip to content

Commit ce79e3e

Browse files
committed
Removed GNU_STACK missing text
1 parent f28d3eb commit ce79e3e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,13 @@ The table below shows which release corresponds to each branch, and what date th
129129
[2435]: https://github.com/Gallopsled/pwntools/pull/2435
130130
[2437]: https://github.com/Gallopsled/pwntools/pull/2437
131131

132-
## 4.13.1 (`stable`)
132+
## 4.13.2 (`stable`)
133+
134+
- [#2493][2493] Fix NX message falsely reporting GNU_STACK missing
135+
136+
[2493]: https://github.com/Gallopsled/pwntools/pull/2493
137+
138+
## 4.13.1
133139

134140
- [#2445][2445] Fix parsing the PLT on Windows
135141
- [#2466][2466] Fix PLT emulation with Unicorn 2.1.0

pwnlib/elf/elf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2074,7 +2074,7 @@ def checksec(self, banner=True, color=True):
20742074
"NX:".ljust(12) + {
20752075
True: green("NX enabled"),
20762076
False: red("NX disabled"),
2077-
None: yellow("NX unknown - GNU_STACK missing"),
2077+
None: yellow("NX unknown"),
20782078
}[self.nx],
20792079
"PIE:".ljust(12) + {
20802080
True: green("PIE enabled"),

0 commit comments

Comments
 (0)