默认导出格式修改为csv

This commit is contained in:
shmilylty
2019-08-23 10:17:33 +08:00
parent 403a3fefcb
commit 69f94193f6
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -60,10 +60,10 @@ class Takeover(Module):
:param str target: 单个子域或者每行一个子域的文件路径(必需参数)
:param int thread: 线程数(默认100)
:param str format: 导出格式(默认xls)
:param str format: 导出格式(默认csv)
:param str dpath: 导出目录(默认None)
"""
def __init__(self, target, thread=100, dpath=None, format='xls'):
def __init__(self, target, thread=100, dpath=None, format='csv'):
Module.__init__(self)
self.subdomains = set()
self.module = 'Check'