Struct goblin::pe::TE

source ·
pub struct TE<'a> {
    pub header: TeHeader,
    pub sections: Vec<SectionTable>,
    pub debug_data: DebugData<'a>,
    pub rva_offset: usize,
}
Expand description

An analyzed TE binary

A TE binary is a PE/PE32+ binary that has had it’s header stripped and re-formatted to the TE specification. This presents a challenge for parsing, as all relative addresses (RVAs) are not updated to take this into account, and are thus incorrect. The parsing of a TE must take this into account by using the header::TeHeader::stripped_size` field of the TE header to adjust the RVAs during parsing.

Fields§

§header: TeHeader

The TE header

§sections: Vec<SectionTable>

A list of the sections in this TE binary

§debug_data: DebugData<'a>

Debug information, contained in the PE header

§rva_offset: usize

The offset to apply to addresses not parsed by the TE parser itself: header::TeHeader::stripped_size - size_of::<header::TeHeader>()

Implementations§

source§

impl<'a> TE<'a>

source

pub fn parse(bytes: &'a [u8]) -> Result<Self>

Reads a TE binary from the underlying bytes

Trait Implementations§

source§

impl<'a> Debug for TE<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for TE<'a>

§

impl<'a> RefUnwindSafe for TE<'a>

§

impl<'a> Send for TE<'a>

§

impl<'a> Sync for TE<'a>

§

impl<'a> Unpin for TE<'a>

§

impl<'a> UnwindSafe for TE<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.