theHarvester/theHarvester.py

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

13 lines
324 B
Python
Raw Permalink 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
2024-06-17 02:38:47 +08:00
if sys.version_info.major < 3 or sys.version_info.minor < 10:
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()