pub struct ExploitAbility {
pub attack_vector: AttackVectorType,
pub attack_complexity: AttackComplexityType,
pub privileges_required: PrivilegesRequiredType,
pub user_interaction: UserInteractionType,
}Expand description
2.1. Exploitability Metrics
As mentioned, the Exploitability metrics reflect the characteristics of the thing that is vulnerable, which we refer to formally as the vulnerable component. Therefore, each of the Exploitability metrics listed below should be scored relative to the vulnerable component, and reflect the properties of the vulnerability that lead to a successful attack.
Fields§
§attack_vector: AttackVectorTypeAttackVectorType 访问途径(AV)
attack_complexity: AttackComplexityTypeAttackComplexityType 攻击复杂度(AC)
privileges_required: PrivilegesRequiredTypePrivilegesRequiredType 所需权限(PR)
user_interaction: UserInteractionTypeUserInteractionType 用户交互(UI)
Implementations§
Trait Implementations§
Source§impl Clone for ExploitAbility
impl Clone for ExploitAbility
Source§fn clone(&self) -> ExploitAbility
fn clone(&self) -> ExploitAbility
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExploitAbility
impl Debug for ExploitAbility
Source§impl<'de> Deserialize<'de> for ExploitAbility
impl<'de> Deserialize<'de> for ExploitAbility
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExploitAbility
impl PartialEq for ExploitAbility
Source§impl Serialize for ExploitAbility
impl Serialize for ExploitAbility
impl StructuralPartialEq for ExploitAbility
Auto Trait Implementations§
impl Freeze for ExploitAbility
impl RefUnwindSafe for ExploitAbility
impl Send for ExploitAbility
impl Sync for ExploitAbility
impl Unpin for ExploitAbility
impl UnwindSafe for ExploitAbility
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more