pub enum AnomalyKind {
Timestomp {
record: u64,
signal: &'static str,
},
AlternateDataStream {
record: u64,
stream: String,
},
DeletedRecord {
record: u64,
},
RecordSlackResidue {
record: u64,
residue_len: usize,
},
}Expand description
Classification of an NTFS forensic anomaly. Each variant carries the MFT record it was observed in plus the evidence to reproduce it.
Variants§
Timestomp
$STANDARD_INFORMATION timestamps show forgery tells relative to the
harder-to-forge $FILE_NAME times (or land on whole seconds).
AlternateDataStream
A named $DATA attribute — an alternate data stream, a common place to
carry hidden payloads (also used benignly, e.g. Zone.Identifier).
DeletedRecord
The MFT record is not in use — a recoverable deleted file.
RecordSlackResidue
Non-zero residue in the record’s slack (past used_size).
Implementations§
Source§impl AnomalyKind
impl AnomalyKind
Trait Implementations§
Source§impl Clone for AnomalyKind
impl Clone for AnomalyKind
Source§fn clone(&self) -> AnomalyKind
fn clone(&self) -> AnomalyKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnomalyKind
impl Debug for AnomalyKind
impl Eq for AnomalyKind
Source§impl PartialEq for AnomalyKind
impl PartialEq for AnomalyKind
Source§fn eq(&self, other: &AnomalyKind) -> bool
fn eq(&self, other: &AnomalyKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnomalyKind
Auto Trait Implementations§
impl Freeze for AnomalyKind
impl RefUnwindSafe for AnomalyKind
impl Send for AnomalyKind
impl Sync for AnomalyKind
impl Unpin for AnomalyKind
impl UnsafeUnpin for AnomalyKind
impl UnwindSafe for AnomalyKind
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