theHarvester/theHarvester.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
322 B
Python
Raw Normal View History

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