mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-25 20:37:48 +08:00
17 lines
264 B
Python
17 lines
264 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
|
|
"""
|
|
示例
|
|
"""
|
|
|
|
from oneforall import OneForAll
|
|
|
|
if __name__ == '__main__':
|
|
test = OneForAll(target='hackfun.org')
|
|
test.brute = True
|
|
test.req = True
|
|
test.takeover = True
|
|
test.run()
|
|
result = test.datas
|