mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-25 20:37:48 +08:00
24 lines
370 B
Python
24 lines
370 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
|
|
"""
|
|
Example
|
|
"""
|
|
|
|
from oneforall import OneForAll
|
|
from dbexport import export
|
|
|
|
|
|
def oneforall(target):
|
|
test = OneForAll(target=target)
|
|
test.brute = True
|
|
test.req = True
|
|
test.takeover = True
|
|
test.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
TARGET = 'freebuf.com'
|
|
oneforall(target=TARGET)
|
|
export(target=TARGET)
|