0

Is it possible to disable SSL 2.0 in my MVC project?

SSL 2.0 contains a number of security flaws (risk of man-in-the-middle attacks etc.; see wiki for more details). So I want to prevent unsecured HTTPS requests via SSL 2.0 protocol.

I know about RequireHttps attribute, but it do not allow to specify required SSL version.

1
  • 1
    SSL settings would be set in IIS if a Windows server. Commented Nov 15, 2013 at 14:40

1 Answer 1

1

The MVC framework knows nothing about SSL types. All it can help determine is whether or not a page has to be served over a secure connection (Https). As for what types of secure connections can be made to the server is an IIS configuration setting.

Sign up to request clarification or add additional context in comments.

1 Comment

So answer is - it is impossible. Thank you.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.