CSV File¶
The most basic of the included operators, the CSV operator simply writes extracted artifacts to a CSV file. The columns in the file are, in order:
- Artifact type (
URL,Domain,IPAddress, etc) - Artifact content (
example.com,1.1.1.1) - Reference link (URL of the source tweet, blog post, etc)
- Reference text (Tweet text, snippet from a blog post, etc)
This operator often comes in handy if you want to quickly and easily test your ThreatIngestor configuration is working as expected.
Configuration Options¶
module(required):csvfilename(required): filename with relative or absolute path.
Example Configuration¶
Inside the operators section of your configuration file:
- name: mycsv
module: csv
filename: output.csv
InQuest Labs