pub enum ExploitMaturity {
NotDefined,
Attacked,
Poc,
Unreported,
}Variants§
NotDefined
NotDefined(X) 未定义 ;可靠的威胁情报无法确定漏洞利用成熟度特征。这是默认值,在假设最坏情况的情况下计算分数时,等效于Attacked(A)。
Attacked
Attacked(A) 已报告针对此漏洞的攻击;简化利用该漏洞的尝试解决方案已公开(或私下可用)。
Poc
POC(P) POC已公开;且未感知到针对此漏洞的利用尝试;且未感知到简化利用该漏洞的尝试的公开可用解决方案
Unreported
Unreported(U) 未感知到POC公开;且未感知到针对此漏洞的利用尝试;且未感知到简化利用该漏洞的尝试的公开可用解决方案。
Trait Implementations§
Source§impl Clone for ExploitMaturity
impl Clone for ExploitMaturity
Source§fn clone(&self) -> ExploitMaturity
fn clone(&self) -> ExploitMaturity
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 ExploitMaturity
impl Debug for ExploitMaturity
Source§impl Default for ExploitMaturity
impl Default for ExploitMaturity
Source§impl<'de> Deserialize<'de> for ExploitMaturity
impl<'de> Deserialize<'de> for ExploitMaturity
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 ExploitMaturity
impl Display for ExploitMaturity
Source§impl FromStr for ExploitMaturity
impl FromStr for ExploitMaturity
Source§impl Metric for ExploitMaturity
impl Metric for ExploitMaturity
Source§impl PartialEq for ExploitMaturity
impl PartialEq for ExploitMaturity
Source§impl Serialize for ExploitMaturity
impl Serialize for ExploitMaturity
impl StructuralPartialEq for ExploitMaturity
Auto Trait Implementations§
impl Freeze for ExploitMaturity
impl RefUnwindSafe for ExploitMaturity
impl Send for ExploitMaturity
impl Sync for ExploitMaturity
impl Unpin for ExploitMaturity
impl UnwindSafe for ExploitMaturity
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