Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

CIF Feeds

Gabriel Iovino edited this page Oct 19, 2015 · 23 revisions

Introduction

CIF has the ability to generate Threat Intelligence "feeds" from its database of ingested and normalized threats. Minimum characteristics of a CIF feed are:

  1. Filtered by observable type (ipv4, fqdn, url, ipv6, email)
  2. De-duplicated or aggregated by observable
  3. Whitelisting data-sets applied

With those minimum characteristics we would expect that people would apply additional filters, examples of these additional filters would be:

  1. confidence (-c)
  2. type (--tags botnet)
  3. time period (--today, --last-day, --firsttime YYYY-MM-DDT00:00:00Z)
  4. format (-f csv, -f bind, -f snort)

Examples

FQDN

  • Observable type: fqdn, Confidence: 95, Type (tags): phishing, Period: today, Output format: csv

    cif --feed --otype fqdn -c 95 --tags phishing --today -f csv
    
  • Observable type: fqdn, Confidence: 85, Type (tags): botnet, Period: today, Output format: bind

    cif --feed --otype fqdn -c 85 --tags botnet --today -f bind
    

IPv4

  • Observable type: ipv4, Confidence: 85, Output format: csv

    cif --feed --otype ipv4 -c 85 --last-day -f csv
    
  • Observable type: ipv4, Confidence: 85, Type (tags): exploit, Output format: csv

    cif --feed --otype ipv4 -c 95 --tags exploit --last-day -f csv
    

URL

  • Observable type: url, Confidence: 85, Type (tags): phishing, Period: last-day, Output format: json

    cif --feed --otype url -c 85 --tags phishing --last-day -f json
    
  • Observable type: url, Confidence: 75, Type (tags): malware, Period: today, Output format: csv

    cif --feed --otype url -c 75 --tags malware --today -f csv
    

Email

  • Observable type: email, Confidence: 75, Type (tags): phishing, Period: last-day, Output format: csv

    cif --feed --otype email -c 75 --tags phishing --last-day -f csv
    

IPv6

  • Observable type: ipv6, Confidence: 75, Type (tags): scanner, Period: today, Output format: csv

    cif --feed --otype ipv6 -c 75 --tags scanner --today -f csv
    
Clone this wiki locally