You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a program is missing the ".note.GNU-stack" section, it usually implies that the stack is executable by default.
With GCC, you can use the "-Wl,-z,noexecstack" flag during the compilation process. This flag tells the linker not to create an executable stack.
The text was updated successfully, but these errors were encountered:
If a program is missing the ".note.GNU-stack" section, it usually implies that the stack is executable by default.
With GCC, you can use the "-Wl,-z,noexecstack" flag during the compilation process. This flag tells the linker not to create an executable stack.
The text was updated successfully, but these errors were encountered: