|
1 | | -.. raw:: html |
2 | | - |
3 | | - <p align="center"> |
4 | | - <img height="128" src="https://inquest.readthedocs.io/projects/threatingestor/en/latest/_static/threatingestor.png" alt="threatingestor" title="threatingestor"> |
5 | | - </p> |
6 | | - |
7 | | - <h1 align="center">ThreatIngestor</h1> |
| 1 | +ThreatIngestor |
| 2 | +============== |
8 | 3 |
|
9 | 4 | .. image:: https://inquest.net/images/inquest-badge.svg |
10 | 5 | :target: https://inquest.net/ |
|
25 | 20 | :target: https://pypi.python.org/pypi/ThreatIngestor |
26 | 21 | :alt: PyPi Version |
27 | 22 |
|
28 | | -An extendable tool to extract and aggregate IOCs from threat feeds. |
| 23 | +An extendable tool to extract and aggregate IOCs_ from threat feeds. |
29 | 24 |
|
30 | | -Designed for use with `InQuest ThreatKB`_, but can be used without it. |
| 25 | +Integrates out-of-the-box with ThreatKB_ and MISP_, and can fit seamlessly into any existing worflow with SQS_, Beanstalk_, and `custom plugins`_. |
31 | 26 |
|
32 | 27 | Overview |
33 | 28 | -------- |
34 | 29 |
|
35 | | -ThreatIngestor can be configured to watch Twitter, RSS feeds, or other |
36 | | -sources, extract meaningful information such as C2 IPs/domains and YARA |
37 | | -signatures, and send that information to another system for analysis. |
| 30 | +ThreatIngestor can be configured to watch Twitter, RSS feeds, or other sources, extract meaningful information such as malicious IPs/domains and YARA signatures, and send that information to another system for analysis. |
| 31 | + |
| 32 | +`Try it out!`_ |
38 | 33 |
|
39 | 34 | Installation |
40 | 35 | ------------ |
41 | 36 |
|
42 | | -ThreatIngestor requires Python 3.6+. |
| 37 | +ThreatIngestor requires Python 3.6+, with development headers. |
| 38 | + |
| 39 | +Install ThreatIngestor from PyPI:: |
43 | 40 |
|
44 | | -Install ThreatIngestor and its dependencies:: |
| 41 | + pip install threatingestor |
45 | 42 |
|
46 | | - pip3 install -r requirements.txt |
47 | | - python3 setup.py install |
| 43 | +Install optional dependencies for using some plugins, as needed:: |
| 44 | + |
| 45 | + pip install threatingestor[all] |
| 46 | + |
| 47 | +View the `full installation instructions`_ for more information. |
48 | 48 |
|
49 | 49 | Usage |
50 | 50 | ----- |
51 | 51 |
|
52 | | -Create a new ``config.yml`` file, and configure each source and operator module |
53 | | -you want to use. (See ``config.example.yml`` for layout.) Then run the script:: |
| 52 | +Create a new ``config.yml`` file, and configure each source and operator module you want to use. (See ``config.example.yml`` for layout.) Then run the script:: |
54 | 53 |
|
55 | 54 | threatingestor config.yml |
56 | 55 |
|
57 | | -By default, it will run forever, polling each configured source every 15 |
58 | | -minutes. |
| 56 | +By default, it will run forever, polling each configured source every 15 minutes. |
| 57 | + |
| 58 | +View the `full ThreatIngestor documentation`_ for more information. |
| 59 | + |
| 60 | +Plugins |
| 61 | +------- |
| 62 | + |
| 63 | +ThreatIngestor uses a plugin architecture with "source" (input) and "operator" (output) plugins. The currently supported integrations are: |
| 64 | + |
| 65 | +Sources |
| 66 | +~~~~~~~ |
| 67 | + |
| 68 | +* Beanstalk work queues |
| 69 | +* Git repositories |
| 70 | +* GitHub repository search |
| 71 | +* RSS feeds |
| 72 | +* Amazon SQS queues |
| 73 | +* Twitter |
| 74 | +* Generic web pages |
| 75 | + |
| 76 | +Operators |
| 77 | +~~~~~~~~~ |
| 78 | + |
| 79 | +* Beanstalk work queues |
| 80 | +* CSV files |
| 81 | +* MISP |
| 82 | +* SQLite database |
| 83 | +* Amazon SQS queues |
| 84 | +* ThreatKB |
| 85 | +* Twitter |
| 86 | + |
| 87 | +View the `full ThreatIngestor documentation`_ for more information on included plugins, and how to create your own. |
| 88 | + |
| 89 | +Support |
| 90 | +------- |
| 91 | + |
| 92 | +If you need help getting set up, or run into any issues, feel free to open an Issue_. You can also reach out to `@InQuest`_ on Twitter. |
59 | 93 |
|
60 | | -For full documentation, see the `ThreatIngestor ReadTheDocs site`_. |
| 94 | +We'd love to hear any feedback you have on ThreatIngestor, its documentation, or how you're putting it to work for you! |
61 | 95 |
|
62 | 96 | Contributing |
63 | 97 | ------------ |
64 | 98 |
|
65 | | -Issues and pull requests are welcomed. Please keep Python code PEP8 compliant. |
66 | | -By submitting a pull request you agree to release your submissions under the |
67 | | -terms of the LICENSE_. |
| 99 | +Issues and pull requests are welcomed. Please keep Python code PEP8 compliant. By submitting a pull request you agree to release your submissions under the terms of the LICENSE_. |
68 | 100 |
|
69 | | -.. _InQuest ThreatKB: https://github.com/InQuest/ThreatKB |
| 101 | +.. _ThreatKB: https://github.com/InQuest/ThreatKB |
70 | 102 | .. _LICENSE: https://github.com/InQuest/threat-ingestors/blob/master/LICENSE |
71 | | -.. _ThreatIngestor ReadTheDocs site: https://threatingestor.readthedocs.io/ |
| 103 | +.. _full ThreatIngestor Documentation: https://threatingestor.readthedocs.io/ |
| 104 | +.. _SQS: https://aws.amazon.com/sqs/ |
| 105 | +.. _Beanstalk: https://beanstalkd.github.io/ |
| 106 | +.. _MISP: https://www.misp-project.org/ |
| 107 | +.. _custom plugins: https://threatingestor.readthedocs.io/en/latest/developing.html |
| 108 | +.. _IOCs: https://en.wikipedia.org/wiki/Indicator_of_compromise |
| 109 | +.. _full installation instructions: https://threatingestor.readthedocs.io/en/latest/installation.html |
| 110 | +.. _Issue: https://github.com/InQuest/ThreatIngestor/issues |
| 111 | +.. _@InQuest: https://twitter.com/InQuest |
| 112 | +.. _Try it out!: https://inquest.readthedocs.io/projects/threatingestor/en/latest/welcome.html#try-it-out |
0 commit comments