Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
laramies
GitHub Repository: laramies/theHarvester
Path: blob/master/theHarvester.py
606 views
1
#!/usr/bin/env python3
2
# Note: This script runs theHarvester
3
import sys
4
5
from theHarvester.theHarvester import main
6
7
if sys.version_info.major < 3 or sys.version_info.minor < 10:
8
print('[!] Make sure you have Python 3.10+ installed, quitting.\n\n')
9
sys.exit(1)
10
11
if __name__ == '__main__':
12
main()
13
14