SY0-501 · Question #219
An application developer is designing an application involving secure transports from one service to another that will pass over port 80 for a request. Which of the following secure protocols is the…
The correct answer is C. SSL. This question tests knowledge of which secure protocol operates over port 80 and is used for securing transport-layer communications in web-based application requests.
Question
An application developer is designing an application involving secure transports from one service to another that will pass over port 80 for a request. Which of the following secure protocols is the developer MOST likely to use?
Options
- AFTPS
- BSFTP
- CSSL
- DLDAPS
How the community answered
(42 responses)- A14% (6)
- B7% (3)
- C76% (32)
- D2% (1)
Why each option
This question tests knowledge of which secure protocol operates over port 80 and is used for securing transport-layer communications in web-based application requests.
FTPS (FTP Secure) uses ports 990 (implicit) or 21 (explicit) for control connections and is designed specifically for file transfer, not general application request transport over port 80.
SFTP (SSH File Transfer Protocol) operates over port 22 as it runs over SSH, and is purpose-built for secure file transfer rather than securing general application request traffic over port 80.
SSL (Secure Sockets Layer) can operate over port 80 when used in certain application-layer tunneling or upgrade scenarios, and is the foundational secure transport protocol used to encrypt HTTP traffic. In the context of application-to-application secure transport over port 80, SSL (and its successor TLS) is the protocol developers implement to secure the communication channel without changing the default HTTP port.
LDAPS (LDAP over SSL) uses port 636 by default and is specifically designed for securing directory service queries, not for securing general application-to-application transport over port 80.
Concept tested: Secure transport protocols and their associated ports
Source: https://learn.microsoft.com/en-us/windows-server/security/tls/tls-ssl-schannel-ssp-overview
Topics
Community Discussion
No community discussion yet for this question.