下面是详细的Python邮件检测工具MMPI使用攻略。
Python 邮件检测工具MMPI使用攻略
什么是MMPI
MMPI全称为Mail Malicious Python Inspector,是一个Python编写的邮件恶意代码检测工具,可以在电子邮件中检测恶意的URL链接、附件和邮件内容。
安装MMPI
- 安装Python
MMPI是基于Python开发的,首先需要安装Python环境,官网下载地址为:https://www.python.org/downloads/。
- 安装MMPI
在终端中运行以下命令进行安装:
pip install mmpi
使用MMPI
使用MMPI可以通过命令行接口,以下是MMPI的命令行参数:
usage: mmpi [-h] [-v] [-t TIMEOUT] [--no-links] [--no-attachments] [-o OUTPUT] [-r] [--proxy PROXY] [-c] FILES [FILES ...]
Mail Malicious Python Inspector
positional arguments:
FILES EML files to analyze. Wildcards are supported (*, ?).
optional arguments:
-h, --help show this help message and exit
-v, --verbose Be more verbose.
-t TIMEOUT, --timeout TIMEOUT
Timeout value for network requests in seconds (default: 60).
--no-links Don't follow links found in emails.
--no-attachments Don't download or analyze attachments.
-o OUTPUT, --output OUTPUT
Output file name. If not specified, results will be printed to standard output.
-r, --recursive If input file is a folder, also look for files in subfolders.
--proxy PROXY Specify a proxy to use for requests.
-c, --color Enable output color.
以下是MMPI的使用示例:
- 分析单个邮件
mmpi email.eml
这里将email.eml替换为你想要分析的邮件文件。
- 分析多个邮件
mmpi email1.eml email2.eml email3.eml
这里将email1.eml、email2.eml和email3.eml替换为你想要分析的邮件文件。
以上就是Python邮件检测工具MMPI的使用攻略,如有问题可以参考MMPI官方文档:https://github.com/jonathan-github/mail-malicious-python-inspector。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python 邮件检测工具mmpi的使用 - Python技术站