A security analyst is reviewing vulnerability scan results and notices that a critical vulnerability on a web server has a CVSS v3.1 base score of 9.8 with the vector AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H. Which component of the CVSS vector indicates that the vulnerability can be exploited from a remote network?
Trap 1: PR:N
The Privileges Required (PR) metric describes the level of authorization an attacker must possess before successfully exploiting the vulnerability. A value of PR:N (None) indicates that an unauthenticated attacker can execute the exploit, but this metric does not define the physical or logical path, such as network reachability, required to reach the target system.
Trap 2: AC:L
Attack Complexity (AC) measures the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. While AC:L (Low) signifies that the exploit can be executed consistently and easily without specialized conditions, it does not provide information regarding the network vector or remote accessibility of the vulnerable service.
Trap 3: UI:N
The User Interaction (UI) metric determines whether a human user must participate in some way, such as clicking a link or opening a file, for the exploit to succeed. Although UI:N (None) means the vulnerability can be exploited silently without any victim interaction, it remains entirely independent of the network reachability or attack vector requirements.
- A
PR:N
Why wrong: The Privileges Required (PR) metric describes the level of authorization an attacker must possess before successfully exploiting the vulnerability. A value of PR:N (None) indicates that an unauthenticated attacker can execute the exploit, but this metric does not define the physical or logical path, such as network reachability, required to reach the target system.
- B
AV:N
The Attack Vector (AV) metric represents the context in which vulnerability exploitation is possible. A value of AV:N (Network) explicitly indicates that the vulnerability is exploitable remotely over the network, meaning the attacker does not need local, physical, or adjacent network access to compromise the target.
- C
AC:L
Why wrong: Attack Complexity (AC) measures the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. While AC:L (Low) signifies that the exploit can be executed consistently and easily without specialized conditions, it does not provide information regarding the network vector or remote accessibility of the vulnerable service.
- D
UI:N
Why wrong: The User Interaction (UI) metric determines whether a human user must participate in some way, such as clicking a link or opening a file, for the exploit to succeed. Although UI:N (None) means the vulnerability can be exploited silently without any victim interaction, it remains entirely independent of the network reachability or attack vector requirements.