pub enum Observation {
OuterPeHeaderFound,
AutoItSignatureFound {
offset: usize,
},
VersionMarkerFound {
encoding: Encoding,
offset: usize,
},
PayloadStreamStartFound {
offset: usize,
},
PeScriptResourceFound {
type_id: u16,
type_name: Option<&'static str>,
name: &'static str,
language_id: Option<u16>,
rva: u32,
offset: usize,
size: u32,
},
PackedMarkerFound {
name: &'static str,
offset: usize,
},
FirstFileRecordDecrypted {
encoding: Encoding,
offset: usize,
},
KnownSubtypeDecrypted {
encoding: Encoding,
offset: usize,
subtype: KnownSubtype,
},
}Expand description
A concrete observation made while analyzing an AutoIt payload.
Variants§
OuterPeHeaderFound
The outer input begins with an MZ PE header.
AutoItSignatureFound
The AutoIt AU3! signature prefix was found at the given file offset.
VersionMarkerFound
A supported AutoIt version marker was found at the given file offset.
Fields
PayloadStreamStartFound
The offset where the AU3 record stream is expected to begin.
PeScriptResourceFound
A PE RT_RCDATA resource named SCRIPT was found.
Fields
PackedMarkerFound
A known packer marker was found in the outer container.
FirstFileRecordDecrypted
The first AU3 record type decrypted to FILE.
Fields
KnownSubtypeDecrypted
The first AU3 record subtype decrypted to a known script subtype.
Trait Implementations§
Source§impl Clone for Observation
impl Clone for Observation
Source§fn clone(&self) -> Observation
fn clone(&self) -> Observation
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 moreimpl Copy for Observation
Source§impl Debug for Observation
impl Debug for Observation
impl Eq for Observation
Source§impl PartialEq for Observation
impl PartialEq for Observation
impl StructuralPartialEq for Observation
Auto Trait Implementations§
impl Freeze for Observation
impl RefUnwindSafe for Observation
impl Send for Observation
impl Sync for Observation
impl Unpin for Observation
impl UnsafeUnpin for Observation
impl UnwindSafe for Observation
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