pyrograph 0.1.0

GPU-accelerated taint analysis for supply chain malware detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg(feature = "python")]

pub mod python {
    pub mod fp {
        #[path = "../../python/fp/django.rs"]
        pub mod django;
    }
    pub mod malware {
        #[path = "../../python/malware/reverse_shell.rs"]
        pub mod reverse_shell;
    }
    #[path = "../../python/parser_audit.rs"]
    pub mod parser_audit;
}