mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 01:23:05 +08:00
16 lines
367 B
Python
Executable file
16 lines
367 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
# Note: This script runs theHarvester
|
|
from platform import python_version
|
|
import sys
|
|
import asyncio
|
|
import uvloop
|
|
|
|
if python_version()[0:3] < '3.7':
|
|
print('\033[93m[!] Make sure you have Python 3.7+ installed, quitting.\n\n \033[0m')
|
|
sys.exit(1)
|
|
|
|
from theHarvester import __main__
|
|
|
|
uvloop.install()
|
|
asyncio.run(__main__.entry_point())
|