Reputation: 78981
Can anyone tell me about SSL and how it can be used to secure a website?
Upvotes: 1
Views: 369
Reputation: 6390
SSL doesn't secure your website- it merely encrypts the flow of information between the server and the browser. Despite SSL, you would still be vulnerable to Cross Site Scripting, non-authenticated requests etc...
Upvotes: 2
Reputation: 1672
SSL is an encryption method to send data securely over http. If you've seen a site with https:// at the beginning that means that it is using SSL. To use ssl to secure your own site, you need hosting that supports it (most do), you need to purchase an SSL certificate from a signing authority (Verisign is an example), and you need to write into your web application to switch to ssl when needed.
Upvotes: 3