#indicator #url #domains #ioc

ioc_extract

Extract indicators like urls,domains,ip,emails,etc... from a given string

14 unstable releases (3 breaking)

0.4.3 Mar 23, 2022
0.4.2 Feb 5, 2022
0.4.0 Jan 31, 2022
0.3.3 Jan 31, 2022
0.1.6 Jan 27, 2022

#165 in Email

Download history 1/week @ 2024-02-16 30/week @ 2024-02-23 17/week @ 2024-03-01 12/week @ 2024-03-08 10/week @ 2024-03-15 88/week @ 2024-03-29

111 downloads per month

Custom license

42KB
957 lines

IOC Extract

Linux x86_64 Linux Arm7 macOS Windows GitHub license

Extract indicators like urls,domains,ip,emails,etc... from a given string or a Text file.

Requirements

  • Rust 1.56+ (edition 2021)

Example

use ioc_extract::extract;

fn main() {
    let x = "there are ips in this test\n192.168.21.21 and ::ffff:127.0.0.1\nthe cidrs are:\n2001:0DB8:1234::/48 and \n10.0.0.0/8\n\n";
    let x = x.to_owned() + "check out https://www.google.com or www.google.com";
    let ioc = extract(&x);
    println!("IOC's:\n{:#?}", ioc);
}

Running the Example

$ cargo r --example xtract
     Running `target/debug/examples/xtract`
IOC's:
Some(
    Indicators {
        urls: Some(
            [
                "https://www.google.com",
            ],
        ),
        domains: Some(
            [
                "www.google.com",
            ],
        ),
        emails: None,
        ip_address: Some(
            [
                "10.0.0.0/8",
                "192.168.21.21",
                "2001:0DB8:1234::/48",
                "::ffff:127.0.0.1",
            ],
        ),
        crypto: None,
        registry: None,
    },
)

LICENSE: MIT

Dependencies

~9–26MB
~431K SLoC