Name

ELF::Extract::Sections::Scanner::Objdump - An objdump based section scanner.

Description

This module is a model implementaiton of a Naive and system relaint ELF Section detector. Its currently highly inefficient due to having to run the entire ELF through a disassembly process to determine the section positions and only guesses at section lengths by advertisng that it cant' compute sizes.

Does

This module is a Performer of ELF::Extract::Sections::Meta::Scanner

Methods

See ELF::Extract::Sections::Meta::Scanner for a method breakdown.

Synopsis

TO use this module, simply initialise ELF::Extract::Sections as so

my $extractor  = ELF::Extract::Sections->new(
        file => "/path/to/file.so" ,
        scanner => "Objdump",
);