수호신의 익스텐션과 패치 다운로드
http://www.hardened-php.net/suhosin/download.html
현재 본인의 경우 PHP7을 사용중이라
패치는 적용할 수 없고 익스텐션만 가능하다.
이전버전일 경우 패치를 적용하고자 한다면 다음과 같이 하자.
# tar -zxvf php-5.x.x.tar.gz
# gzip -d suhosin-patch-5.x.x-0.9.10.patch.gz
# cd php-5.x.x
# patch -p1 -i ../suhosin-patch-5.x.x-0.9.10.patch.gz
위와같이 php에 패치를 적용한후에 정상적인 방법으로 php를 컴파일 하면 된다.
이번에는 다음과 같이 익스텐션 설치를 해보자.
--php5
# git clone https://github.com/sektioneins/suhosin
# cd suhosin
# phpize
# ./configure \
--with-php-config=<php경로>/bin/php-config \
--enable-suhosin-experimental
# make
# make install
--php7
# git clone https://github.com/sektioneins/suhosin7
# cd suhosin7
# phpize
# ./configure \
--with-php-config=<php경로>/bin/php-config \
--enable-suhosin-experimental
# make
# make install
이후에 php의 익스텐션으로 모듈을 등록한다.
extension=suhosin.so
phpinfo()명령으로 설치가 정상적으로 되었는지 확인해 보자