Struct armorlib::scan_modules::strings::StringsScanModule
[−]
[src]
pub struct StringsScanModule;
Trait Implementations
impl ScanModule for StringsScanModule[src]
fn scan(&self, scan_object: &ScanObject) -> Result<Vec<Finding>, ArmorlibError>[src]
Scan the given scan_object and return either a vector of Findings or, in case of an error, an ArmorlibError. Read more
fn info(&self) -> (&'static str, &'static str)[src]
Returns a tuple containing the name and description of the scan module.
fn required_preprocessors(&self) -> Vec<&'static str>[src]
Return a Vec of &'static strs indicating the preprocessors that the scan module relies on for running. These names should match the name provided by the processor in its name() function. Read more
fn name(&self) -> &'static str[src]
Returns a &'static str of the name of the scan module. This information is drawn from the information provided by info() in its default implementation. Read more
fn description(&self) -> &'static str[src]
Returns a &'static str of the description of the scan module. This information is drawn from the information provided by info() in its default implementation. Read more