2019-03-24 16:07:45 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Note: This script runs theHarvester
|
2019-07-03 18:44:22 +08:00
|
|
|
from platform import python_version
|
|
|
|
import sys
|
2019-12-21 11:12:55 +08:00
|
|
|
import asyncio
|
|
|
|
|
2019-10-20 05:11:07 +08:00
|
|
|
if python_version()[0:3] < '3.7':
|
|
|
|
print('\033[93m[!] Make sure you have Python 3.7+ installed, quitting.\n\n \033[0m')
|
2019-07-03 18:44:22 +08:00
|
|
|
sys.exit(1)
|
2020-01-08 11:17:45 +08:00
|
|
|
|
|
|
|
from theHarvester import __main__
|
|
|
|
|
2020-06-29 12:11:55 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
platform = sys.platform
|
|
|
|
if platform == 'win32':
|
|
|
|
# Required or things will break if trying to take screenshots
|
|
|
|
import multiprocessing
|
|
|
|
multiprocessing.freeze_support()
|
|
|
|
asyncio.DefaultEventLoopPolicy = asyncio.WindowsSelectorEventLoopPolicy
|
|
|
|
else:
|
|
|
|
import uvloop
|
|
|
|
uvloop.install()
|
2020-07-05 03:38:11 +08:00
|
|
|
if "linux" in platform:
|
2020-07-01 06:47:06 +08:00
|
|
|
import aiomultiprocess
|
|
|
|
# As we are not using Windows we can change the spawn method to fork for greater performance
|
|
|
|
aiomultiprocess.set_context("fork")
|
2020-06-29 12:11:55 +08:00
|
|
|
asyncio.run(__main__.entry_point())
|