mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
21 lines
289 B
Python
21 lines
289 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
|
|
"""
|
|
Example
|
|
"""
|
|
|
|
from oneforall import OneForAll
|
|
|
|
|
|
def oneforall(domain):
|
|
test = OneForAll(target=domain)
|
|
test.brute = True
|
|
test.req = True
|
|
test.takeover = True
|
|
test.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
oneforall('freebuf.com')
|