Welcome to LQ. Hope you like it here.
Quote:
Originally Posted by alxasamy
I recently joined a company and have been asked to manage a Linux box (RHEL 5), which is a web server (Apache2).
|
Congratulations! If you haven't already, I should point out that RHEL comes with good administration documentation you should find the time to read.
Quote:
Originally Posted by alxasamy
The PCI compliance scan for this web server indicates that Weak Supported SSL Cipher Suites and SSLv2 detection on ports 443, 465, 993, 995, 8443.
|
There's two related directives in httpd.conf governing this: SSLProtocol and SSLCipherSuite. Example:
SSLProtocol -all +TLSv1 +SSLv3
SSLCipherSuite HIGH:MEDIUM:!aNULL:+SHA1:+MD5:+HIGH:+MEDIUM
For more information see
http://httpd.apache.org/docs/2.0/mod...sslciphersuite
Quote:
Originally Posted by alxasamy
Another one is an unknown application on tcp port 1040.
|
There's multiple ways to find out as root from running 'lsof -P -n -i :1040 to 'fuser -n 1040' to the lesser efficient 'netstat -anpe|grep 1040'.
Also see 'getent services 1040' for any existing service definitions.
Quote:
Originally Posted by alxasamy
Also there are many other issues being indicated in the report.
|
Please note that
talking about errors or situations does not equal
posting information about them (log lines, errors).