Metadata-Version: 2.4
Name: intelmq_extensions
Version: 1.12.2
Summary: Additional bots for IntelMQ
Author: CERT.at Data & Development Team
License: AGPLv3
Project-URL: Repository, https://github.com/certat/intelmq-extensions
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tabulate>=0.7.5
Requires-Dist: intelmq
Requires-Dist: rt<3.0.0,>=1.0.9
Requires-Dist: mergedeep
Requires-Dist: schwifty
Requires-Dist: setuptools<82
Requires-Dist: python-termstyle>=0.1.10
Requires-Dist: netaddr>=0.7.14
Requires-Dist: importlib_metadata; python_version < "3.8"
Requires-Dist: psycopg2-binary
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: tox>=4; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: requests-mock; extra == "dev"
Requires-Dist: freezegun; extra == "dev"
Dynamic: license-file
Dynamic: requires-dist

# IntelMQ Extensions

[![Running tests](https://github.com/certat/intelmq-extensions/actions/workflows/ci.yml/badge.svg)](https://github.com/certat/intelmq-extensions/actions/workflows/ci.yml)

This project collects customized bots and some helper scripts for
[IntelMQ](https://github.com/certtools/intelmq) used primary by CERT.at.

It's a combination of customization previously available in [certat/intelmq](https://github.com/certat/intelmq)
as well as newer solutions.

## Usage

Install the package on the machine or virtualenv, where you have the IntelMQ, using
`pip install intelmq-extensions`. Then, the bots will be available as any other IntelMQ
bot in the Manager as well to import using `intelmq.bots.*.certat` namespace, e.g.
`intelmq.bots.experts.certat.vulnerability_lookup.expert`

## Documentation

There is a limited documentation available. Consult bot Python code to see information
about the usage and available configuration.

## Running tests

This package comes with test runners configured using `tox`. To use them:

```bash

    tox -elint  # run code style checks
    tox -epy310  # run simple unittests against Python 3.10

    # For running all unittests, including connecting to external services / database
    # use on of the following:
    tox -efull  # assuming you run redis, postgres etc. on your own
    tox -efull-with-docker  # this will use docker compose to provision services for tests;
                            # please note it uses default ports

    # You can pass arguments to the pytest, e.g. to run a specific test:
    tox -efull-with-docker -- intelmq_extensions/tests/bots/experts/squelcher/test_expert.py::TestSquelcherExpertBot::test_address_match1

```

---

Part of the development was financed by the European Union.

![CEF-Logo](https://github.com/certat/intelmq-extensions/blob/main/docs/cef_logo.png?raw=true)
