1/513
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Secure protocol
A secure protocol protects network communication using security features such as encryption, authentication, and integrity checking.Example: An administrator uses an encrypted remote-management protocol instead of a clear-text one.Memory trick: Secure protocol = protected conversation.Trick question tip: Encryption, protected login data, certificates, and secure alternatives are secure-protocol clues.
Insecure protocol
An insecure protocol transmits data without adequate protection, often exposing information in clear text.Example: A legacy remote-management protocol sends commands and login information without encryption.Memory trick: Insecure means readable on the wire.Trick question tip: Clear text, easy packet inspection, and legacy protocol design indicate insecure communication.
Clear text
Clear text is readable data transmitted or stored without encryption.Example: A captured packet reveals the content of an unprotected login request.Memory trick: Clear text = anyone who sees it can read it.Trick question tip: If intercepted traffic can be read directly, the protocol lacks confidentiality protection.
HTTP
Hypertext Transfer Protocol is an insecure web protocol that does not encrypt web traffic by default.Example: A basic webpage request is sent without transport encryption.Memory trick: HTTP has no secure S.Trick question tip: HTTP commonly uses TCP port 80 and should not be used for sensitive data.
HTTPS
Hypertext Transfer Protocol Secure protects web communication using SSL/TLS encryption.Example: A user submits login information through a protected web session.Memory trick: HTTPS = HTTP secured.Trick question tip: HTTPS commonly uses TCP port 443 and is preferred for websites handling sensitive data.
HTTP vs HTTPS
HTTP sends web traffic without built-in encryption, while HTTPS protects web traffic using SSL/TLS.Example: A login page should use HTTPS rather than HTTP.Memory trick: The S means secure.Trick question tip: Sensitive form data, credentials, and browser security warnings point to HTTPS.
Telnet
Telnet is an insecure remote-access protocol that transmits session data in clear text.Example: An administrator avoids Telnet because intercepted traffic could reveal login information and commands.Memory trick: Telnet tells everything.Trick question tip: Telnet should be replaced with SSH for secure remote administration.
Secure Shell (SSH)
Secure Shell is a secure remote-administration protocol that encrypts logins, commands, and session traffic.Example: A network engineer uses SSH to manage a router securely.Memory trick: SSH = secure shell session.Trick question tip: Choose SSH instead of Telnet when remote command-line management must be protected.
Telnet vs SSH
Telnet sends remote-management traffic in clear text, while SSH encrypts the management session.Example: A server administrator disables Telnet and permits SSH for remote access.Memory trick: Telnet exposes; SSH encrypts.Trick question tip: Remote-management credentials and commands require SSH, not Telnet.
SSL/TLS certificate
An SSL/TLS certificate helps prove a server’s identity and supports encrypted HTTPS communication.Example: A web server presents a valid certificate during a protected browser session.Memory trick: Certificate proves who the server claims to be.Trick question tip: HTTPS configuration requires a valid certificate installed and maintained correctly.
Certificate Authority (CA)
A Certificate Authority is a trusted entity that issues digital certificates used to support secure communication.Example: An organization obtains a certificate from a trusted CA for its web service.Memory trick: CA signs trust into certificates.Trick question tip: Public trust for HTTPS commonly depends on a trusted CA.
Certificate expiration
Certificate expiration occurs when a certificate reaches the end of its validity period and must be renewed or replaced.Example: A web service generates browser warnings because its certificate was not renewed on time.Memory trick: Certificates have expiration dates.Trick question tip: Expired certificates can break trust even when encryption settings are otherwise correct.
Certificate management
Certificate management includes obtaining, installing, configuring, monitoring, renewing, and revoking certificates.Example: Administrators track certificate expiration dates to prevent service disruptions.Memory trick: Certificates need lifecycle care.Trick question tip: Secure protocols often fail because certificates are misconfigured, expired, or not trusted.
Cryptographic key handling
Cryptographic key handling includes creating, storing, distributing, protecting, and revoking keys used by secure protocols.Example: Private keys are stored securely so unauthorized users cannot decrypt protected communication.Memory trick: Protect the keys that protect the data.Trick question tip: Strong encryption is weakened if keys are poorly managed.
Encryption overhead
Encryption overhead is the additional processing and management effort required to encrypt and decrypt network traffic.Example: A secure service requires certificate configuration and key management before deployment.Memory trick: Security adds work, but protects data.Trick question tip: Complexity is not a valid reason to use insecure protocols without documented justification.
Secure protocol complexity
Secure protocols are often more complex to deploy, troubleshoot, and maintain than insecure protocols.Example: HTTPS requires certificate installation, proper configuration, and renewal planning.Memory trick: Secure setup takes more care.Trick question tip: Complexity increases misconfiguration risk but does not remove the need for secure protocols.
Secure protocol troubleshooting challenge
Secure protocols can be harder to troubleshoot because encrypted packets cannot be easily read during normal packet inspection.Example: An administrator must rely on logs and approved tools instead of simply reading protected packet contents.Memory trick: Encryption hides data from attackers and admins.Trick question tip: Encryption improves confidentiality but can reduce visibility during troubleshooting.
Secure protocol misconfiguration
A secure protocol misconfiguration occurs when security settings are incorrectly applied, weakening protection or breaking access.Example: A server uses an invalid certificate and causes users to receive trust warnings.Memory trick: Secure settings must be correct to be secure.Trick question tip: Misconfigured encryption, certificates, ports, or authentication can undermine secure protocols.
Default protocol port
A default protocol port is the standard network port normally associated with a protocol.Example: HTTP commonly uses port 80, while HTTPS commonly uses port 443.Memory trick: Default port = usual service number.Trick question tip: Changing a default port does not make an insecure protocol secure.
Port 80
Port 80 is commonly associated with HTTP web traffic.Example: A firewall rule allowing TCP port 80 permits ordinary HTTP traffic.Memory trick: 80 = HTTP.Trick question tip: HTTP on port 80 does not protect sensitive information by default.
Port 443
Port 443 is commonly associated with HTTPS web traffic.Example: A firewall allows TCP port 443 for protected web sessions.Memory trick: 443 = HTTPS.Trick question tip: Opening port 443 allows HTTPS traffic but does not prove the web application is secure.
Changing default ports
Changing default ports moves a service away from its commonly expected port but does not provide real cryptographic security.Example: An administrator changes a management service port but still uses a secure protocol and strong authentication.Memory trick: Moving the door is not locking the door.Trick question tip: Port changes may obscure a service but should not replace hardening or secure protocols.
Security through obscurity
Security through obscurity attempts to hide a system or service detail instead of directly securing it.Example: A service is moved to a nonstandard port but still requires encryption and access controls.Memory trick: Hiding is not the same as protecting.Trick question tip: Obscurity may slow discovery but should not be the primary control.
Transmission Control Protocol (TCP)
Transmission Control Protocol is a connection-oriented transport protocol that provides reliability, ordering, and error checking.Example: A secure web session uses TCP because reliable delivery matters.Memory trick: TCP checks and orders the conversation.Trick question tip: Reliability, ordering, and connection-oriented communication indicate TCP.
User Datagram Protocol (UDP)
User Datagram Protocol is a connectionless transport protocol that prioritizes speed and low overhead over guaranteed delivery.Example: Real-time communication may use UDP because occasional packet loss is less disruptive than delay.Memory trick: UDP sends fast without a full conversation setup.Trick question tip: Streaming, gaming, voice, and connectionless traffic often point to UDP.
TCP vs UDP
TCP provides reliable, ordered, connection-oriented delivery, while UDP provides faster, connectionless delivery without the same reliability guarantees.Example: File transfer favors TCP, while real-time media may favor UDP.Memory trick: TCP is reliable; UDP is quick.Trick question tip: Match the transport method to reliability versus performance needs.
Protocol selection
Protocol selection is the process of choosing communication methods based on data sensitivity, security requirements, performance, compatibility, and cost.Example: Sensitive file transfer uses a secure protocol instead of an unencrypted legacy method.Memory trick: Choose protocol by risk and purpose.Trick question tip: Sensitive or private data should trigger secure protocol selection.
Data sensitivity
Data sensitivity describes how much protection information requires based on its value, privacy, or potential impact if exposed.Example: Login credentials and private form data require secure transmission.Memory trick: More sensitive data needs stronger protection.Trick question tip: Sensitive data should not be sent over clear-text protocols.
Secure protocol documentation
Secure protocol decisions should be documented to support audits, compliance, baselines, and configuration management.Example: A standard documents which protocols are allowed for remote administration.Memory trick: Document the secure choice and why.Trick question tip: Formal protocol selection affects baselines and configuration management systems.
Risk assessment for protocol selection
Risk assessment evaluates threats, data sensitivity, business needs, and impact before selecting or approving protocols.Example: A team rejects clear-text management protocols after assessing credential-exposure risk.Memory trick: Risk decides how much protection is needed.Trick question tip: Secure protocol choices should be based on documented risk, not convenience.
Policy review for protocol selection
Policy review ensures selected protocols align with organizational security requirements and acceptable-use rules.Example: A policy requires encrypted protocols for administration and sensitive user data.Memory trick: Protocol choices must match policy.Trick question tip: Policy drives allowed protocols and exceptions.
Security baseline impact
Protocol-selection decisions affect secure baselines by defining which communication methods are approved or prohibited.Example: A server baseline requires HTTPS and SSH while disabling HTTP management and Telnet.Memory trick: Baseline turns protocol decisions into standard settings.Trick question tip: Approved protocol choices should become configuration requirements.
Configuration management impact
Protocol decisions affect configuration management because approved settings must be deployed, tracked, and maintained consistently.Example: Automation disables insecure protocols across managed servers.Memory trick: Decide once, enforce everywhere.Trick question tip: Configuration management helps prevent insecure protocol drift.
Secure protocol exception
A secure protocol exception is a documented justification for using an insecure protocol when a secure alternative is not feasible.Example: A legacy device requires temporary use of an insecure protocol while replacement is planned.Memory trick: Exception means documented risk, not convenience.Trick question tip: Insecure protocols should require specific justification and compensating controls.
Secure File Transfer Protocol (SFTP)
Secure File Transfer Protocol provides secure file transfer over SSH.Example: Administrators use SFTP to move sensitive files securely between systems.Memory trick: SFTP = file transfer through SSH.Trick question tip: Do not confuse SFTP with FTPS; both protect file transfer differently.
File Transfer Protocol Secure (FTPS)
File Transfer Protocol Secure protects FTP communication using SSL/TLS.Example: A business partner transfers files using an FTP service protected with TLS.Memory trick: FTPS = FTP plus TLS.Trick question tip: FTPS uses SSL/TLS, while SFTP uses SSH.
SFTP vs FTPS
SFTP secures file transfer through SSH, while FTPS secures FTP using SSL/TLS.Example: One organization chooses SFTP for SSH-based administration workflows, while another uses FTPS for TLS-protected file transfer.Memory trick: SFTP rides SSH; FTPS rides TLS.Trick question tip: The similar names are a common Security+ trap.
Secure protocol balance
Secure protocol selection balances security, maintainability, performance, and cost.Example: A team chooses a secure protocol that meets confidentiality requirements without creating unacceptable performance issues.Memory trick: Secure enough and manageable enough.Trick question tip: The best answer often balances protection with operational requirements.
Secure protocols as default
Organizations should use secure protocols by default unless a specific documented justification supports an insecure alternative.Example: New services are deployed with encrypted management and user access enabled.Memory trick: Secure unless proven otherwise.Trick question tip: “Convenient” or “easier to troubleshoot” is not enough justification for clear-text protocols.
Secure protocol defense in depth
Secure protocol use should be combined with proper certificate management, strong authentication, key protection, firewall rules, monitoring, and configuration baselines.Example: A web service uses HTTPS, a valid certificate, strong access controls, and monitored configuration settings.Memory trick: Encrypt, authenticate, manage keys, monitor, maintain.Trick question tip: A secure protocol is only one layer of protection and must be configured and maintained correctly.