...
- Integrity Protection. SSL protects against modification of messages by an active wiretapper.
- Authentication. In most modes, SSL provides peer authentication. Servers are usually authenticated, and clients may be authenticated as requested by servers.
- Confidentiality (Privacy Protection). In most modes, SSL encrypts data being sent between client and server. This protects the confidentiality of data, so that passive wiretappers won't see sensitive data such as financial information or personal information of many kinds.
Wiki Markup |
---|
It is also important to use SSL for secure RMI communications because RMI depends on object serialization and serialized data must be safeguarded in transit. Gong et al. \[[Gong 03|AA. Java References#Gong 03]\] describe how to secure RMI communications using {{SSLSockets}}. |
Noncompliant Code Example
...
Wiki Markup |
---|
\[[API 06|AA. Java References#API 06]\] \[[Gong 03|AA. Java References#Gong 03]\] 11.3.3 "Securing RMI Communications" \[[Ware 08|AA. Java References#Ware 08]\] \[[MITRE 09|AA. Java References#MITRE 09]\] [CWE ID 311|http://cwe.mitre.org/data/definitions/311.html] "Failure to Encrypt Sensitive Data" |
...