mail_to_misp/hashmarker.py

7 lines
161 B
Python
Raw Normal View History

2017-04-28 09:58:58 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
MD5_REGEX = r"""\b([a-f0-9]{32})\b"""
SHA1_REGEX = r"""\b([a-f0-9]{40})\b"""
SHA256_REGEX = r"""\b([a-f0-9]{64})\b"""