pmsf 0.1.0

Polymorphic Malware Stage Framework (PMSF): a research-grade Rust framework for simulating and analyzing modular malware stages.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::env;
use std::fs;
use std::io::Write;
use std::path::Path;

fn main() {
    // Use the current time and a random value for demonstration (replace with real metadata if needed)
    let hash = format!("{}-{}", chrono::Utc::now().timestamp(), rand::random::<u64>());
    println!("cargo:rustc-env=RUSTMORPHISM_BUILD_HASH={}", hash);
}