laurel 0.7.3

Transform Linux Audit logs for SIEM usage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use lazy_static::lazy_static;
use std::collections::HashMap;

lazy_static! {
    pub static ref SYSCALL_NAMES: HashMap<&'static str, HashMap<u32, &'static str>> = {
        let mut hm = HashMap::new();
        /* @SYSCALL_BUILD@ */
        hm
    };
}

pub static URING_OPS: [Option<&[u8]>; 64] = [
    /* @URING_OPS@ */
];