├── DNS-Spoofer └── Spoofer.py ├── LICENSE ├── PasswordCracking ├── hashpassword.py └── sha1cracker.py ├── PortScanner ├── AdvScanner.py ├── Multiport.py ├── Singleport.py └── bannerofport.py ├── README.md ├── images ├── abc └── image.png └── requirements.txt /DNS-Spoofer/Spoofer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/DNS-Spoofer/Spoofer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/LICENSE -------------------------------------------------------------------------------- /PasswordCracking/hashpassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PasswordCracking/hashpassword.py -------------------------------------------------------------------------------- /PasswordCracking/sha1cracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PasswordCracking/sha1cracker.py -------------------------------------------------------------------------------- /PortScanner/AdvScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PortScanner/AdvScanner.py -------------------------------------------------------------------------------- /PortScanner/Multiport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PortScanner/Multiport.py -------------------------------------------------------------------------------- /PortScanner/Singleport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PortScanner/Singleport.py -------------------------------------------------------------------------------- /PortScanner/bannerofport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/PortScanner/bannerofport.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/README.md -------------------------------------------------------------------------------- /images/abc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Python-For-Ethical-Hacking/HEAD/images/image.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | termcolor --------------------------------------------------------------------------------