pub enum ExfilPathType {
CredentialExfil,
FileExfil,
ReconExfil,
ContextExfil,
}Variants§
CredentialExfil
Credential read → external transmission.
FileExfil
Sensitive file read → encoding → network egress.
ReconExfil
System enumeration → data collection → batch transmission.
ContextExfil
Memory/context extraction → external delivery.
Trait Implementations§
Source§impl Clone for ExfilPathType
impl Clone for ExfilPathType
Source§fn clone(&self) -> ExfilPathType
fn clone(&self) -> ExfilPathType
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 ExfilPathType
impl Debug for ExfilPathType
Source§impl PartialEq for ExfilPathType
impl PartialEq for ExfilPathType
impl Copy for ExfilPathType
impl Eq for ExfilPathType
impl StructuralPartialEq for ExfilPathType
Auto Trait Implementations§
impl Freeze for ExfilPathType
impl RefUnwindSafe for ExfilPathType
impl Send for ExfilPathType
impl Sync for ExfilPathType
impl Unpin for ExfilPathType
impl UnsafeUnpin for ExfilPathType
impl UnwindSafe for ExfilPathType
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