C845 VUN1 TASK 3 & SSCP
MASTERY
PART 0: THE NAVIGATOR
● PART I: THE PRIMER
● PART II: THE ELITE TEST BANK
○ Section A: Foundational Syntax & Application (Questions 1–15)
○ Section B: Professional Simulation (Questions 16–40)
○ Section C: Grandmaster Synthesis (Questions 41–66)
PART I: THE PRIMER
Mastering the WGU C845 VUN1 Task 3 and the 2026 SSCP CBK requires elevating your
mindset from academic memorization to clinical, operational precision. To thrive in a threat
landscape dominated by AI-driven exploits and quantum-vulnerable cryptography, you must
stop describing security abstractly and start engineering it mathematically.
● The Risk Equation: Risk = Threat Event × Probability (Likelihood) × Impact. Conflating a
vulnerability with a risk automatically fails the rubric.
● The FinSecure Hard Deck: Unencrypted databases require Application-Level
Encryption; legacy FTP requires immediate decommissioning for SFTP/HTTPS.
● NIST SP 800-30 Rev 1 Sequence: Prepare, Conduct, Communicate, Maintain.
● 2026 Cryptographic Agility: FIPS 203 (ML-KEM) is for Key Encapsulation; FIPS 204
(ML-DSA) is for Digital Signatures.
● CVSS 4.0 Context: Base scores no longer stand alone. The Threat Metric explicitly
models real-world exploitation states.
PART II: THE ELITE TEST BANK
Section A: Foundational Syntax & Application
Q1: A candidate is drafting their WGU C845 VUN1 Task 3 risk matrix for the FinSecure case
study. They document "Unpatched legacy FTP server" as a High-Level Risk. Which evaluation
represents the MOST ACCURATE assessment of this documentation according to NIST SP
800-30 Rev 1 standards? A) It is accurate because legacy FTP transmits data in cleartext,
,resulting in high impact. B) It is inaccurate because an unpatched server is a vulnerability, not a
risk; a risk requires the combination of a threat event, probability, and impact. C) It is accurate
because the CVSS 4.0 base score for unpatched legacy software defaults to Critical. D) It is
inaccurate because the rubric requires risks to be categorized strictly as quantitative monetary
losses.
● The Answer: B (It is inaccurate because an unpatched server is a vulnerability, not a risk;
a risk requires the combination of a threat event, probability, and impact.)
● Distractor Analysis:
○ A is incorrect: While cleartext transmission is fundamentally insecure, describing
the server state defines a weakness, not the mathematical calculation of a threat
actor exploiting it.
○ C is incorrect: CVSS 4.0 measures vulnerability severity, not contextual
organizational risk.
○ D is incorrect: WGU Task 3 and NIST 800-30 allow for qualitative impact
assessments (e.g., High, Medium, Low); monetary quantification is not strictly
mandated.
The Mentor's Analysis: If you write "Unpatched Server" in the Risk column of your Task 3
submission, it will be returned for revision immediately. In professional environments, a
vulnerability is simply a hole in the fence. The Risk is the likelihood that a specific adversary
(Threat) walks through that hole to steal the data (Impact). Professional Intuition: Always
articulate risk as an action happening to an asset, resulting in a consequence.
Q2: Under the updated 2026/2027 (ISC)² SSCP exam outline, Domain 3 is defined as "Risk
Identification, Monitoring, and Analysis". When implementing the NIST SP 800-30 framework,
which action is performed FIRST during the risk assessment process? A) Communicate the
assessment results to executive stakeholders. B) Conduct the vulnerability and threat analysis.
C) Maintain the assessment by updating the risk register. D) Prepare for the assessment by
defining the scope, purpose, and assumptions.
● The Answer: D (Prepare for the assessment by defining the scope, purpose, and
assumptions.)
● Distractor Analysis:
○ A is incorrect: Communicating results is Step 3 of the NIST 800-30 process.
○ B is incorrect: Conducting the assessment is Step 2. You cannot conduct an
analysis without a defined boundary.
○ C is incorrect: Maintaining the assessment is Step 4, representing the ongoing
lifecycle requirement.
The Mentor's Analysis: Amateurs jump straight into scanning for vulnerabilities. Elite
practitioners know that without a defined scope (Preparing), an assessment spirals into endless
scope creep, wasting budget and confusing stakeholders. | NIST 800-30 Phase | Operational
Focus | | :--- | :--- | | 1. Prepare | Define scope, assumptions, and risk tolerance. | | 2. Conduct |
Identify threats, vulnerabilities, likelihood, and impact. | | 3. Communicate | Share results with
decision-makers. | | 4. Maintain | Continuously monitor and update the risk profile. |
Q3: The FinSecure case study reveals that HR and Finance departments transmit employee PII
across the internal network using a legacy FTP server. What is the BEST cryptographic
recommendation to satisfy the data-in-transit mitigation requirements for WGU Task 3? A)
Implement Full Disk Encryption (FDE) on the FTP server hard drives using AES-256. B)
Decommission the FTP server and mandate the use of SFTP (SSH File Transfer Protocol) to
encapsulate the session in a secure tunnel. C) Configure the FTP server to hash all PII files
using SHA-256 prior to transit. D) Apply Application-Level Encryption to the database columns
, storing the PII.
● The Answer: B (Decommission the FTP server and mandate the use of SFTP (SSH File
Transfer Protocol) to encapsulate the session in a secure tunnel.)
● Distractor Analysis:
○ A is incorrect: FDE protects data at rest. It does absolutely nothing to protect data
moving across the network.
○ C is incorrect: Hashing provides integrity verification, but it does not provide
confidentiality. The PII would remain readable.
○ D is incorrect: Application-Level Encryption directly addresses Data at Rest risks,
not the Data in Transit risk created by the FTP protocol.
The Mentor's Analysis: FTP is a cleartext protocol. Anyone with a basic packet sniffer can
read the traffic. To fix data-in-transit risks, you must secure the pipeline. SFTP wraps the entire
exchange in an SSH tunnel, providing both confidentiality and integrity over the wire.
Professional Intuition: Data state dictates the control. Transit requires secure tunnels; Rest
requires storage encryption.
Q4: When addressing Data at Rest risks in the FinSecure case study, why is Application-Level
Encryption recommended IN ADDITION TO database-level or full-disk encryption (FDE)? A)
FDE is easily bypassed by modern quantum computers, whereas Application-Level Encryption
utilizes FIPS 203 ML-KEM. B) Application-Level Encryption encrypts data before it hits the
database, ensuring that if an attacker bypasses server-level access controls, the specific
high-value fields remain unreadable. C) Database-level encryption violates 2026 GLBA
compliance standards for financial institutions. D) FDE only encrypts data in volatile memory
(RAM), leaving the physical disks exposed.
● The Answer: B (Application-Level Encryption encrypts data before it hits the database,
ensuring that if an attacker bypasses server-level access controls, the specific high-value
fields remain unreadable.)
● Distractor Analysis:
○ A is incorrect: Symmetric encryption like AES-256 (used in FDE) is highly resistant
to quantum attacks; quantum computers primarily threaten asymmetric encryption.
○ C is incorrect: Database-level encryption is heavily utilized and fully compliant; it
simply lacks the granularity of application-tier keystores.
○ D is incorrect: FDE encrypts physical disks, not RAM. This distractor is factually
inverted.
The Mentor's Analysis: FDE is a physical anti-theft compliance checkbox. Once the server is
powered on and the OS loads, FDE is transparent to the attacker. Application-Level Encryption
ensures that even if a threat actor achieves highly privileged database access, the specific fields
(like SSNs) require an external key from the application layer to decrypt. This is true
Defense-in-Depth.
Q5: According to the CVSS 4.0 standard heavily utilized in the 2026/2027 SSCP CBK, which
metric explicitly replaces the legacy "Temporal" score to provide a more accurate assessment of
a vulnerability's real-world exploitation state? A) The Scope Metric B) The Environmental Score
C) The Threat Metric D) The Supplemental Context Metric
● The Answer: C (The Threat Metric)
● Distractor Analysis:
○ A is incorrect: Scope modeling was refined in CVSS 4.0, but it existed natively in
v3.1.
○ B is incorrect: The Environmental score adjusts for specific organizational
infrastructure, which was already a core component of legacy versions.