How to make a website secured with https

后端 未结 7 1486
既然无缘
既然无缘 2020-12-12 11:23

I have to build a small webapp for a company to maintain their business data... Only those within the company will be using it, but we are planning to host it in public dom

7条回答
  •  抹茶落季
    2020-12-12 11:57

    What kind of business data? Trade secrets or just stuff that they don't want people to see but if it got out, it wouldn't be a big deal? If we are talking trade secrets, financial information, customer information and stuff that's generally confidential. Then don't even go down that route.

    I'm wondering whether I need to use a secured connection (https) or just the forms authentication is enough.

    Use a secure connection all the way.

    Do I need to alter the code / Config

    Yes. Well may be not. You may want to have an expert do this for you.

    Is SSL and https one and the same...

    Mostly yes. People usually refer to those things as the same thing.

    Do I need to apply with someone to get some license or something.

    You probably want to have your certificate signed by a certificate authority. It will cost you or your client a bit of money.

    Do I need to make all my pages secured or only the login page...

    Use https throughout. Performance is usually not an issue if the site is meant for internal users.

    I was searching Internet for answer, but I was not able to get all these points... Any whitepaper or other references would also be helpful...

    Start here for some pointers: http://www.owasp.org/index.php/Category:OWASP_Guide_Project

    Note that SSL is a minuscule piece of making your web site secure once it is accessible from the internet. It does not prevent most sort of hacking.

提交回复
热议问题