theHarvester/theHarvester.py

13 lines
324 B
Python
Raw Normal View History

#!/usr/bin/env python3
# Note: This script runs theHarvester
2023-07-26 23:27:29 +08:00
import sys
from theHarvester.theHarvester import main
if sys.version_info.major < 3 or sys.version_info.minor < 11:
2024-07-11 01:38:49 +08:00
print('\033[93m[!] Make sure you have Python 3.10+ installed, quitting.\n\n \033[0m')
sys.exit(1)
2024-07-11 01:38:49 +08:00
if __name__ == '__main__':
main()