pub enum AnomalyType {
ReadThenExfil,
PrivilegeEscalationAfterTaint,
ToolDiversitySpike,
NovelToolAfterUntrustedContent,
PrivilegedActionCluster,
}Expand description
Types of sequence anomalies.
Variants§
ReadThenExfil
Sensitive read followed by network egress.
PrivilegeEscalationAfterTaint
Sink class jump after source taint.
ToolDiversitySpike
New tools cluster after taint event.
NovelToolAfterUntrustedContent
Never-seen tool targets privileged sink after untrusted content.
PrivilegedActionCluster
Burst of privileged sink calls.
Trait Implementations§
Source§impl Clone for AnomalyType
impl Clone for AnomalyType
Source§fn clone(&self) -> AnomalyType
fn clone(&self) -> AnomalyType
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 AnomalyType
impl Debug for AnomalyType
Source§impl PartialEq for AnomalyType
impl PartialEq for AnomalyType
impl Copy for AnomalyType
impl Eq for AnomalyType
impl StructuralPartialEq for AnomalyType
Auto Trait Implementations§
impl Freeze for AnomalyType
impl RefUnwindSafe for AnomalyType
impl Send for AnomalyType
impl Sync for AnomalyType
impl Unpin for AnomalyType
impl UnsafeUnpin for AnomalyType
impl UnwindSafe for AnomalyType
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