1. Check what kind of file is infected by malware 2. Use find method to search that file above find -name 'filename' 3. Open infected file using editor 4. Delete code 5. Restart Server
1. Check what kind of file is infected by malware 2. Use find method to search that file above find -name 'filename' 3. Open infected file using editor 4. Delete code 5. Restart Server
이번에 워드프레스가 3.2.1 버전으로 업데이트 되면서 PHP 5.2.4 이상의 버전을 요구하게 되었다. 기본 패키지에는 PHP 5.1 버전이 들어 있으므로 PHP 5.3 으로 업그레이드를 위해서는 다음과 같은 과정을 거치면 된다. 1. Repository를 갱신한다. # wget http://download.fedora.redhat.com/pub/epel/5/i386/epel-realease-5-4.noarch.rpm # wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm # rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm 2. 이전 버전의 PHP를 제거한다 # yum erase php php-pear php-mysql php-cli […]
리눅스에서 openssl 명령어를 이용하여 키를 생성하는 과정에서 아래와 같은 메시지가 출력되는 경우가 있다. unable to write 'random state' 위 에러 메시지에 대한 openssl.org 사이트의 설명은 아래와 같다. 2. Why do I get an "unable to write 'random state'" error message? Sometimes the openssl command line utility does not abort with a "PRNG not seeded" error […]