pub enum AttackComplexityType {
High,
Low,
}Expand description
Attack Complexity (AC) 攻击复杂度
攻击复杂度为攻击者无法控制的条件,这些条件必须存在才能攻击脆弱组件。 如下文所述,这些条件可能需要预先收集有关目标或系统的配置或计算异常等更多信息。
The Attack Complexity metric describes the conditions beyond the attacker’s control that must exist in order to knowledge_base the vulnerability. As described below, such conditions may require the collection of more information about the target, the presence of certain system configuration settings, or computational exceptions.
Variants§
Implementations§
Source§impl AttackComplexityType
impl AttackComplexityType
pub fn metric_help(&self) -> Help
Trait Implementations§
Source§impl Clone for AttackComplexityType
impl Clone for AttackComplexityType
Source§fn clone(&self) -> AttackComplexityType
fn clone(&self) -> AttackComplexityType
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 AttackComplexityType
impl Debug for AttackComplexityType
Source§impl<'de> Deserialize<'de> for AttackComplexityType
impl<'de> Deserialize<'de> for AttackComplexityType
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 Display for AttackComplexityType
impl Display for AttackComplexityType
Source§impl FromStr for AttackComplexityType
impl FromStr for AttackComplexityType
Source§impl Metric for AttackComplexityType
impl Metric for AttackComplexityType
Source§impl PartialEq for AttackComplexityType
impl PartialEq for AttackComplexityType
Source§impl Serialize for AttackComplexityType
impl Serialize for AttackComplexityType
impl StructuralPartialEq for AttackComplexityType
Auto Trait Implementations§
impl Freeze for AttackComplexityType
impl RefUnwindSafe for AttackComplexityType
impl Send for AttackComplexityType
impl Sync for AttackComplexityType
impl Unpin for AttackComplexityType
impl UnwindSafe for AttackComplexityType
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