Files
OneForAll-mirror/test.py
T
2021-01-27 22:33:09 +08:00

24 lines
353 B
Python

#!/usr/bin/env python3
# coding=utf-8
"""
Example
"""
from oneforall import OneForAll
def oneforall(domain):
test = OneForAll(target=domain)
test.dns = True
test.brute = True
test.req = True
test.takeover = True
test.run()
results = test.datas
print(results)
if __name__ == '__main__':
oneforall('freebuf.com')