How can you securely send sensitive data from a client to a server in a web application?
- Encode data in Base64
- Send data in plain text
- Use HTTP with custom encryption
- Use HTTPS (SSL/TLS)
Sensitive data should be sent securely, and using HTTPS (SSL/TLS) ensures encrypted communication between the client and the server, providing a secure way to transmit sensitive information.
Loading...
Related Quiz
- Which listener interface is used to receive notifications about changes to the servlet request?
- How does 'cache eviction' differ from 'cache invalidation' in caching strategies?
- The __________ method of AsyncContext is used to dispatch the request to another servlet.
- A web application requires users to log in for access. Which servlet feature should be implemented for this requirement?
- A servlet needs to log different levels of messages. Which approach is the most effective?