CompTIA Security+ SY0-701 - Domains 1 and 2 Threats Attacks Cryptography

By Jordan Blake · Updated May 25, 2026

Questions25
Passing Score75%
Format100% Multiple Choice
Sessions Logged758
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.4 out of 5 from 20 ratings.
4.4 (20)

Topics covered

This quiz

Uncategorized25 (100%)

Uncategorized25 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-6006

Question Q-6006 An organization discovers that a former employee's account was used…

2 comments · last active May 15, 2026

  • mfalconieri · Apr 4, 12:49 AM

    AES-256 brute force is infeasible with current compute — key space is the answer, not 'encryption is magic'.

  • thugware · May 15, 2:51 AM

    Know symmetric vs asymmetric tradeoffs for domain 1. Speed vs key distribution shows up again in crypto domain quizzes.

Q-6014

Question Q-6014 A security engineer is implementing DNSSEC. What does DNSSEC protect…

2 comments · last active May 10, 2026

  • justthistimeonly · Mar 21, 11:53 AM

    Certificate pinning / HSTS / proper TLS chain — know what fixes MitM vs what just encrypts after the fact.

  • luv2play · May 10, 6:48 AM

    PKI questions in this set tie back to domain 1 crypto objectives. Root vs intermediate CA path matters.

Q-5999

Question Q-5999 An organization's web application is found to be vulnerable to…

3 comments · last active Apr 26, 2026

  • GoaYaro · Apr 3, 9:08 PM

    Parameterized queries > encoding alone. Encoding can break; prepared statements keep data out of the SQL parser.

  • Opiatethrowaway10 · Apr 4, 5:08 AM

    WAF is compensating control. Dev answer is always fix the code — OWASP Top 10 drills this.

  • bb_boi · Apr 26, 10:42 AM

    I almost picked input encoding because it 'sounds' secure. Read the architect vs developer framing.

Q-6002

Question Q-6002 A company implements a security control where each employee requires…

2 comments · last active Apr 3, 2026

  • abrahamlincolnsaurus · Apr 3, 11:41 AM

    Smart card + PIN = something you have + something you know. Two passwords is NOT MFA (same factor).

  • Mjpecca87 · Apr 3, 8:41 PM

    Physical access control question but same principle as 2FA on apps. CompTIA loves the factor-type trap.

Q-6001

Question Q-6001 A security analyst receives an alert from the SIEM about…

2 comments · last active Mar 29, 2026

  • ocregister12 · Mar 28, 4:44 PM

    NYC then Tokyo 15 min later = impossible travel IOC. VPN split tunnel doesn't explain concurrent geo logins.

    +2 votes
  • thadeus37 · Mar 29, 2:44 PM

    SIEM correlation rules flag this constantly. First step: force password reset + revoke sessions.

Q-6010

Question Q-6010 What is the primary purpose of using a cryptographic salt…

2 comments · last active Mar 25, 2026

  • TheNumberSleven · Mar 25, 4:45 AM

    Hashing is one-way; encryption is reversible. Password storage = salted hash (bcrypt/Argon2), not AES on passwords.

  • Vercingetorisk · Mar 25, 5:45 PM

    MD5/SHA-1 for passwords is dead. Exam still tests why collisions matter for integrity checks.

Q-6000

Question Q-6000 During a penetration test, a tester exploits a vulnerability that…

2 comments · last active Mar 23, 2026

  • nooBTCrader · Mar 22, 6:34 PM

    Isolated network that isn't isolated + CVSS 9.8 unpatched for 3 years = defense in depth failure. Not a zero-day.

  • signmytits_ · Mar 23, 8:34 AM

    Jump server misconfig is the segmentation failure. Patch mgmt is the other half — both have to fail for the story.

Q-5997

Question Q-5997 A security analyst is mapping adversary behaviors to the MITRE…

2 comments · last active Mar 20, 2026

  • Belovelant · Mar 20, 7:01 AM

    PowerShell pulling from C2 is Execution + Command and Control — not Initial Access. They already own the box.

    +2 votes
  • Scrappy12345 · Mar 20, 6:01 PM

    ATT&CK tactic questions love splitting hairs. I map 'run code' → Execution, 'talk to C2' → C2 every time now.

Q-5998

Question Q-5998 A threat actor gains access to an organization by sending…

2 comments · last active Mar 18, 2026

  • heylookapizza · Mar 17, 11:33 PM

    Spear-phish to the CFO with vendor-themed lures = targeted recon. That's APT behavior, not script kiddie spray-and-pray.

  • A-ZipperSuitedSunGod · Mar 18, 6:33 PM

    OSINT on LinkedIn + invoice templates is scary common. Exam wants you to pick sophistication over volume.

Q-6018

Question Q-6018 A company's security policy requires storing encryption keys separately from…

2 comments · last active Mar 15, 2026

  • dandekel · Mar 15, 4:47 PM

    Social engineering pretexting: attacker fabricates a scenario. Vishing is phone; this one read like targeted email + urgency.

  • abnormalyetnormal · Mar 15, 11:47 PM

    User awareness training is the control, but exam answer is usually identify the attack type first.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

A company uses TLS 1.3 to encrypt web traffic. Which of the following BEST describes the purpose of TLS in this context?

Answer choices

  • A. Authentication only

  • B. Encryption of data in transit, with server authentication and optionally mutual authentication (Correct)

  • C. Encryption of data at rest

  • D. VPN tunnel creation between two offices

Explanation

TLS (Transport Layer Security) provides: 1) Encryption of data in transit (confidentiality), 2) Server authentication via certificates (integrity/authenticity), 3) Optional mutual authentication (client + server certificates). TLS 1.3 is the current standard, removing support for weak ciphers.

Question 2

A company is moving to a zero-trust architecture. An employee on the internal network requests access to a sensitive database. Under zero trust, what must happen before access is granted?

Answer choices

  • A. Access is granted automatically because the user is on the internal network

  • B. The user and device must be verified, the request must be authorized against policy, and access should be granted least-privilege for only that specific resource (Correct)

  • C. The user only needs to authenticate once at network login

  • D. Zero trust only applies to external users

Explanation

Zero trust rejects the "trust but verify" model. Under zero trust: 1) Verify explicitly (authenticate identity every request), 2) Use least privilege access (just enough access, just in time), 3) Assume breach (monitor and log everything). Location on internal network grants no inherent trust.

Question 3

During a penetration test, a tester exploits a vulnerability that was publicly disclosed 3 years ago with a CVSS score of 9.8. The system was not patched because it was "on an isolated network." The tester reached it via a misconfigured jump server. What vulnerability management failure does this represent?

Answer choices

  • A. A zero-day exploit

  • B. Defense in depth failure: unpatched critical vulnerability combined with network segmentation failure (Correct)

  • C. A supply chain attack

  • D. Insider threat

Explanation

This represents multiple security failures: 1) An unpatched, publicly-known critical vulnerability (CVSS 9.8) — patch management failure, and 2) A network assumed isolated that was reachable via a misconfigured jump server — defense in depth/network segmentation failure.

Question 4

A company is concerned about sensitive data being exfiltrated through DNS queries. An attacker could encode stolen data in DNS lookup requests. What is this technique called?

Answer choices

  • A. DNS spoofing

  • B. DNS tunneling (Correct)

  • C. DNS amplification

  • D. Zone transfer

Explanation

DNS tunneling encodes data (malware commands, exfiltrated files) within DNS query and response packets to communicate covertly. DNS traffic is often allowed through firewalls without deep inspection, making it a common C2 and data exfiltration channel.

Question 5

A security analyst is reviewing a web server and finds that the server responds to HTTP OPTIONS requests, revealing supported methods including PUT and DELETE. What is the security risk?

Answer choices

  • A. No risk — OPTIONS is a standard informational response

  • B. Attackers can use the information to identify exploitable HTTP methods (PUT/DELETE can allow unauthorized file upload or deletion) (Correct)

  • C. OPTIONS responses expose API keys

  • D. OPTIONS requests cause denial of service

Explanation

Exposing HTTP methods like PUT (upload files) and DELETE (delete files) via the OPTIONS method reveals attack vectors. If the server doesn't properly restrict these methods, attackers can upload malicious files or delete web content. HTTP methods should be restricted to only what's needed.