GSLC · Question #38
Against which of the following does SSH provide protection? Each correct answer represents a complete solution. Choose two.
The correct answer is C. Password sniffing D. IP spoofing. SSH uses strong encryption and cryptographic host authentication to prevent credentials from being captured in transit and to verify host identity, directly countering password sniffing and IP spoofing.
Question
Against which of the following does SSH provide protection? Each correct answer represents a complete solution. Choose two.
Options
- ABroadcast storm
- BDoS attack
- CPassword sniffing
- DIP spoofing
How the community answered
(56 responses)- A5% (3)
- B4% (2)
- C91% (51)
Why each option
SSH uses strong encryption and cryptographic host authentication to prevent credentials from being captured in transit and to verify host identity, directly countering password sniffing and IP spoofing.
A broadcast storm is a Layer 2 switching problem caused by looping broadcast frames that overwhelm the network - it is a physical and data-link layer issue that SSH, an application-layer protocol, has no mechanism to address.
SSH provides no protection against denial-of-service attacks because an attacker can still flood an SSH-enabled host with connection requests or traffic volume that exhausts system resources regardless of the encryption in use.
SSH encrypts the entire session including the authentication exchange, so an attacker capturing traffic with a packet sniffer sees only ciphertext and cannot recover plaintext passwords. This directly replaces vulnerable plaintext protocols like Telnet or FTP where credentials are trivially visible on the wire.
SSH authenticates servers using public-key cryptography, requiring the remote host to prove possession of a private key that matches a known public key. An attacker who forges a source IP address cannot produce valid cryptographic proof of identity, defeating IP spoofing.
Concept tested: SSH encryption and cryptographic authentication protections
Source: https://www.ssh.com/academy/ssh/security
Topics
Community Discussion
No community discussion yet for this question.