Sun Solaris UNIX kernel provide protection against buffer overflows. It can detect, log, and prevent such attempts to execute code on the stack. You need update the /etc/system file, which provides a static mechanism for adjusting the values of kernel parameters. Values specified in this file are read at boot time and are applied. Any changes that are made to the file are not applied to the operating system until the system is rebooted.
Open /etc/system file, enter:
# cp /etc/system /etc/system.old
# vi /etc/systemAdd / modify the following lines:
Where,
set noexec_user_stack=1
set noexec_user_stack_log=1
- noexec_user_stack=1 : Turn on buffer overflow protection
- set noexec_user_stack_log=1 : Enable the Logging of Executable Stack Messages.
# init 6
No comments:
Post a Comment