I was exploring SSL certificates and its advantages. There I came across using SSL certificate for Database connection. I am confused with why we need secure connection with database. Since if secure connection is established between client and server, anyways server is what going to connect and fetch from Database. Can someone help me in understanding why we need secure connection with Database? Thanks in advance.

有帮助吗?

解决方案

You need SSL when the connection method is not secure, such as attaching to a remote database over the Internet. It's probably not a bad idea in general even for an internal application if there is any risk that someone, such as employee, may be able to intercept and either view the data in plaintext or do a MITM attack and they're not otherwise authorized to completely control the database.

其他提示

The main idea of SSL is to prevent man-in-the-middle attacks and to make sure the remote server is really who they say they are.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top