├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── MUA ├── Apple │ └── Mail │ │ └── MISP Mail Rule Action.txt ├── Microsoft │ └── Office365 │ │ └── README.md └── Mozilla │ └── Thunderbird │ └── thunderbird_wrapper.sh ├── README.md ├── __init__.py ├── certs └── .keepdir ├── fake_smtp.py ├── fake_smtp_config.py-example ├── mail2misp ├── __init__.py ├── hashmarker.py ├── mail2misp.py └── urlmarker.py ├── mail_to_misp.py ├── mail_to_misp_config.py-example ├── mail_to_misp_forward.py ├── mail_to_misp_o365.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── config_carrier.py ├── config_forward.py ├── config_spamtrap.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/LICENSE -------------------------------------------------------------------------------- /MUA/Apple/Mail/MISP Mail Rule Action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/MUA/Apple/Mail/MISP Mail Rule Action.txt -------------------------------------------------------------------------------- /MUA/Microsoft/Office365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/MUA/Microsoft/Office365/README.md -------------------------------------------------------------------------------- /MUA/Mozilla/Thunderbird/thunderbird_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/MUA/Mozilla/Thunderbird/thunderbird_wrapper.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /certs/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fake_smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/fake_smtp.py -------------------------------------------------------------------------------- /fake_smtp_config.py-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/fake_smtp_config.py-example -------------------------------------------------------------------------------- /mail2misp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail2misp/__init__.py -------------------------------------------------------------------------------- /mail2misp/hashmarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail2misp/hashmarker.py -------------------------------------------------------------------------------- /mail2misp/mail2misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail2misp/mail2misp.py -------------------------------------------------------------------------------- /mail2misp/urlmarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail2misp/urlmarker.py -------------------------------------------------------------------------------- /mail_to_misp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail_to_misp.py -------------------------------------------------------------------------------- /mail_to_misp_config.py-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail_to_misp_config.py-example -------------------------------------------------------------------------------- /mail_to_misp_forward.py: -------------------------------------------------------------------------------- 1 | mail_to_misp.py -------------------------------------------------------------------------------- /mail_to_misp_o365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/mail_to_misp_o365.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config_carrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/tests/config_carrier.py -------------------------------------------------------------------------------- /tests/config_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/tests/config_forward.py -------------------------------------------------------------------------------- /tests/config_spamtrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/tests/config_spamtrap.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MISP/mail_to_misp/HEAD/tests/tests.py --------------------------------------------------------------------------------