CompTIA Security+ (SY0-701) Flashcards
Browse all 30 cards
What are the three pillars of the CIA triad?
Confidentiality, Integrity, and Availability. Confidentiality restricts data access to authorized parties, integrity ensures data has not been altered improperly, and availability ensures systems and data are accessible when needed.
What does the AAA framework stand for in security operations?
Authentication, Authorization, and Accounting. Authentication verifies identity, authorization determines what an authenticated identity is permitted to do, and accounting logs what actions were actually taken.
What is the difference between authentication and authorization?
Authentication proves who a user is (identity verification), while authorization determines what an authenticated user is allowed to access or do.
What is non-repudiation?
A security property ensuring a party cannot deny having performed an action, typically enforced through digital signatures and audit logs that tie an action to a specific identity.
What is the difference between symmetric and asymmetric encryption?
Symmetric encryption uses a single shared key for both encryption and decryption, making it fast but requiring secure key distribution. Asymmetric encryption uses a mathematically linked public/private key pair, solving key distribution but at a higher computational cost.
What is a zero-day vulnerability?
A previously unknown software flaw that has no available patch, exploited by attackers before the vendor becomes aware and can issue a fix.
What distinguishes a vulnerability from a threat and a risk?
A vulnerability is a weakness that can be exploited, a threat is a potential danger that could exploit that weakness, and risk is the likelihood and impact of a threat successfully exploiting a vulnerability.
What is social engineering?
The use of psychological manipulation to trick people into divulging confidential information, granting access, or performing actions that compromise security, rather than exploiting technical flaws.
What is the difference between phishing, vishing, and smishing?
Phishing is social engineering conducted via email, vishing is conducted via voice/phone calls, and smishing is conducted via SMS text messages.
What is the purpose of defense in depth?
A layered security strategy that uses multiple, overlapping controls (technical, administrative, and physical) so that if one control fails, others still protect the asset.
What is the principle of least privilege?
Users, processes, and systems should be granted only the minimum access rights necessary to perform their required functions, reducing the potential impact of a compromised account.
What is a DDoS attack?
A distributed denial-of-service attack in which multiple compromised systems (often a botnet) flood a target with traffic or requests, overwhelming it and denying service to legitimate users.
What is the difference between a virus, a worm, and a trojan?
A virus requires a host file and user action to spread, a worm self-propagates across networks without user interaction, and a trojan disguises itself as legitimate software to trick users into installing it.
What is ransomware?
Malware that encrypts a victim's files or locks them out of a system, then demands payment (typically cryptocurrency) in exchange for restoring access.
What is multifactor authentication (MFA)?
An authentication method requiring two or more independent verification factors from different categories: something you know (password), something you have (token), and something you are (biometric).
What is the purpose of a firewall?
A network security device or software that monitors and controls incoming and outgoing traffic based on predetermined security rules, forming a barrier between trusted and untrusted networks.
What is the difference between an IDS and an IPS?
An intrusion detection system (IDS) monitors traffic and alerts on suspicious activity but does not act on it, while an intrusion prevention system (IPS) sits inline and can actively block or stop detected threats.
What is a VPN and what does it provide?
A virtual private network creates an encrypted tunnel over a public network, providing confidentiality and integrity for data in transit between endpoints.
What is the purpose of network segmentation?
Dividing a network into smaller isolated zones to limit the lateral movement of attackers, contain breaches, and enforce access controls between segments.
What is a security control's classification as preventive, detective, or corrective?
Preventive controls stop an incident before it occurs (e.g., firewalls), detective controls identify an incident as or after it occurs (e.g., IDS, logging), and corrective controls restore systems and reduce impact after an incident (e.g., backups, patching).
What is the difference between qualitative and quantitative risk analysis?
Qualitative risk analysis uses subjective ratings (high/medium/low) to prioritize risks, while quantitative risk analysis assigns numeric/monetary values, such as calculating Annualized Loss Expectancy, to measure risk impact.
What is Single Loss Expectancy (SLE) and how is it calculated?
SLE is the monetary loss expected from a single occurrence of a risk event, calculated as Asset Value multiplied by the Exposure Factor (the percentage of asset value lost).
What is Annualized Loss Expectancy (ALE)?
The expected yearly monetary loss from a risk, calculated as Single Loss Expectancy (SLE) multiplied by the Annualized Rate of Occurrence (ARO).
What are the four common risk response strategies?
Accept (take no action and absorb the risk), avoid (eliminate the activity causing the risk), mitigate (reduce likelihood or impact with controls), and transfer (shift risk to a third party, such as through insurance).
What is the difference between RTO and RPO in business continuity planning?
Recovery Time Objective (RTO) is the maximum acceptable time to restore a system after a disruption, while Recovery Point Objective (RPO) is the maximum acceptable amount of data loss measured in time since the last backup.
What is the purpose of a Business Impact Analysis (BIA)?
A process that identifies critical business functions and quantifies the operational and financial impact of their disruption, informing recovery priorities and continuity planning.
What is the chain of custody in digital forensics?
A documented, unbroken record of who collected, handled, transferred, and stored evidence, ensuring the evidence remains admissible and untampered from collection through legal proceedings.
What is the difference between symmetric key algorithms like AES and asymmetric algorithms like RSA?
AES is a symmetric algorithm that uses the same secret key for encryption and decryption and is efficient for bulk data, while RSA is an asymmetric algorithm using a public/private key pair, commonly used for key exchange and digital signatures.
What is a digital certificate used for in a PKI?
A digital certificate binds a public key to a verified identity, issued and signed by a trusted Certificate Authority (CA), enabling parties to trust that a public key belongs to the claimed owner.
What is the purpose of hashing in security?
Hashing produces a fixed-length, one-way digest of data used to verify integrity; any change to the original data produces a different hash, but the original data cannot be derived from the hash.