binwalk 3.1.0

Analyzes data for embedded file types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::extractors;

/// Describes how to run the unrar utility to extract RAR archives
pub fn rar_extractor() -> extractors::common::Extractor {
    extractors::common::Extractor {
        utility: extractors::common::ExtractorType::External("unrar".to_string()),
        extension: "rar".to_string(),
        arguments: vec![
            "x".to_string(),  // Perform extraction
            "-y".to_string(), // Answer yes to all questions
            extractors::common::SOURCE_FILE_PLACEHOLDER.to_string(),
        ],
        exit_codes: vec![0],
        ..Default::default()
    }
}