suricata-ipc

Crates.iosuricata-ipc
lib.rssuricata-ipc
version0.19.0
sourcesrc
created_at2020-04-06 15:54:27.139444
updated_at2021-03-05 17:00:30.166348
descriptionLibrary for sending packets to suricata and receiving output.
homepage
repositoryhttps://github.com/protectwise/suricata-ipc/
max_upload_size
id226977
size322,509
rust-owners (github:protectwise:rust-owners)

documentation

README

suricata-ipc

Library to enable packet sharing with suricata, and reading alerts from an eve socket. Alerts read can then use an intel cache to determine additional metadata about them.

use suricata_ipc::prelude::*;

#[tokio::main]
async fn main() {
    let rules = Rules::from_path("my.rules").expect("Failed to parse rules");
    let config = Config::default();
    let rules = Rules::from_path(resources.join("test.rules")).expect("Could not parse rules");
    let cache: IntelCache<Rule> = rules.into();
    cache.materialize_rules(config.rule_path.clone()).expect("Failed to materialize rules");

    let mut ids = Ids::new(config).await.expect("Failed to create ids");
    let ids_alerts = ids.take_alerts().expect("No alerts");

    send_packets(&mut ids).await.expect("Failed to send packets");

    let alerts: Result<Vec<_>, Error> = ids_alerts.try_collect().await;
    let alerts: Result<Vec<_>, Error> = alerts.expect("Failed to receive alerts")
        .into_iter().flat_map(|v| v).collect();
    let alerts = alerts.expect("Failed to parse alerts");

    for eve in alerts {
        println!("Eve={:?}", eve);
        if let Some(intel) = cache.observed(eve) {
            if let Observed::Alert { rule, message: _ } = intel {
                println!("Rule={:?}", rule);
            }
        }
    }
}

Develop With Docker

Install lefthook. You can then run

lefthook run develop

Building IPC Plugin

Refer to IPC Plugin Readme for instructions. You will need the IPC plugin to use suricata-ipc.

Commit count: 169

cargo fmt