0

Report:

The server is vulnerable to the POODLE attack. If possible, disable SSL 3 to mitigate.

The server supports only older protocols, but not the current best TLS 1.2.

The server accepts RC4 cipher, but only with older protocol versions.

  1. Is it good to disable SSL 3?
  2. Is it good to enable TLS 1.2?
  3. Is there a solution to improve the SSL Score?

1 Answers1

3
  1. Is it good to disable SSL 3?

Generally yes.

  1. Is it good to enable TLS 1.2?

Generally yes.

  1. Is there a solution to improve the SSL Score?

In broad strokes:

  • Regardless of what web server you are running:

    • Update your server software.
    • Disable SSL3.
    • Enable TLS1.2.
  • If running the Microsoft IIS web server:

    • Download and run IISCrypto.
    • Press "Best Practices" button.
    • Press "Apply" button.
    • Close IISCrypto.
    • Reboot server.
  • If running another web server:

StackzOfZtuff
  • 1,842
  • 13
  • 21