优化覆盖率

This commit is contained in:
JrD
2020-09-09 16:05:34 +08:00
parent 05ac53b8d5
commit e91f61d2f9
3 changed files with 30 additions and 39 deletions
+10 -3
View File
@@ -6,11 +6,18 @@ Example
"""
from oneforall import OneForAll
from dbexport import export
if __name__ == '__main__':
test = OneForAll(target='freebuf.com')
def oneforall(target):
test = OneForAll(target=target)
test.brute = True
test.req = True
test.takeover = True
test.run()
result = test.datas
if __name__ == '__main__':
TARGET = 'freebuf.com'
oneforall(target=TARGET)
export(target=TARGET)