I want to test Heartbleed on Apache Server. I removed Apache and Openssl from my OS (Ubutu 12.04). I wonder how can I install Apache WITH the Openssl version 1.0.1 in order to be able to test this vulnerability on my own localhost (Apache Server) ?
Asked
Active
Viewed 9,063 times
1 Answers
5
Yes, you can compile it yourself.
Download OpenSSL 1.0.1f:
wget http://www.openssl.org/source/openssl-1.0.1f.tar.gzExtract
openssl-1.0.1f.tar.gz:tar -xvzf openssl-1.0.1f.tar.gzEnter the created directory:
cd openssl-1.0.1fConfigure OpenSSL:
./configCompile OpenSSL:
makeTest if everything went right:
make testInstall OpenSSL:
sudo make install
Now OpenSSL is installed on your PC and you can test it.
Louis Matthijssen
- 12,155