You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1、masscan无法扫描端口号
在centos版本安装masscan有很大几率有问题,确实存在无法扫描端口问题,我现在使用的是unbuntu版本.
2、发送邮件出现如下问题:
2019-01-11 15:48:51,491 - LogInfo - sending mail failure,error:
2019-01-11 15:48:51,555 - LogInfo - sending mail failure,error:
2019-01-11 15:48:56,775 - LogInfo - sending mail failure,error:
2019-01-11 15:48:56,775 - LogInfo - sending mail success
这样不会收到邮件的,我当时场景是用的新浪的邮箱,配置的用户名和密码.就会出现这个问题.后来密码改成授权码就能解决.
3、发送邮件出现乱码问题:
(1)在lib/publicEmail.py中增加如下:
from email.mine.text import Header
msg["Subject"] = Header("每日端口服务信息详", "utf-8")
正文出现乱参考:#3
另外出现UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 45: ordinal not in range(128)主要是编码问题:
在40行后面增加:
add_port_info = unicode(add_port_info, 'utf-8')
The text was updated successfully, but these errors were encountered:
------------------ 原始邮件 ------------------
发件人: "maxwalk"<[email protected]>;
发送时间: 2020年3月3日(星期二) 下午2:32
收件人: "grayddq/PublicMonitors"<[email protected]>;
抄送: "天 道"<[email protected]>; "Author"<[email protected]>;
主题: Re: [grayddq/PublicMonitors] 问题总结,如下坑有些确实很无奈,避免大家出现如下问题 (#9)
若主机禁止ping,masscan 就直接跳过了,这样会漏掉一些开放的公网地址的端口。可否配置项可添加
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
1、masscan无法扫描端口号
在centos版本安装masscan有很大几率有问题,确实存在无法扫描端口问题,我现在使用的是unbuntu版本.
2、发送邮件出现如下问题:
2019-01-11 15:48:51,491 - LogInfo - sending mail failure,error:
2019-01-11 15:48:51,555 - LogInfo - sending mail failure,error:
2019-01-11 15:48:56,775 - LogInfo - sending mail failure,error:
2019-01-11 15:48:56,775 - LogInfo - sending mail success
这样不会收到邮件的,我当时场景是用的新浪的邮箱,配置的用户名和密码.就会出现这个问题.后来密码改成授权码就能解决.
3、发送邮件出现乱码问题:
(1)在lib/publicEmail.py中增加如下:
from email.mine.text import Header
msg["Subject"] = Header("每日端口服务信息详", "utf-8")
正文出现乱参考:#3
另外出现UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 45: ordinal not in range(128)主要是编码问题:
在40行后面增加:
add_port_info = unicode(add_port_info, 'utf-8')
The text was updated successfully, but these errors were encountered: