├── .gitignore ├── LICENSE ├── README.md ├── arp_spoofer └── arp_spoof.py ├── arpspoof_detector └── arpspoof_detector.py ├── backdoors ├── listener.py └── reverse_backdoor.py ├── code_injector ├── code_injector.py └── code_injector_https.py ├── crawler ├── brute_force_login.py ├── crawler.py ├── files-and-dirs-wordlist.txt ├── spider.py └── subdomains-wordlist.txt ├── dns_spoofer └── redirect_user.py ├── file_interceptor ├── replace_downloads.py └── replace_downloads_https.py ├── mac_changer └── mac_changer.py ├── malware ├── get_passwords.py ├── get_wifi_passwords.py └── keylogger.py ├── network_discover └── network_discover.py ├── packet_sniffer └── packet_sniffer.py ├── requirements.txt └── vulnerability_scanner └── scanner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/README.md -------------------------------------------------------------------------------- /arp_spoofer/arp_spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/arp_spoofer/arp_spoof.py -------------------------------------------------------------------------------- /arpspoof_detector/arpspoof_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/arpspoof_detector/arpspoof_detector.py -------------------------------------------------------------------------------- /backdoors/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/backdoors/listener.py -------------------------------------------------------------------------------- /backdoors/reverse_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/backdoors/reverse_backdoor.py -------------------------------------------------------------------------------- /code_injector/code_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/code_injector/code_injector.py -------------------------------------------------------------------------------- /code_injector/code_injector_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/code_injector/code_injector_https.py -------------------------------------------------------------------------------- /crawler/brute_force_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/crawler/brute_force_login.py -------------------------------------------------------------------------------- /crawler/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/crawler/crawler.py -------------------------------------------------------------------------------- /crawler/files-and-dirs-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/crawler/files-and-dirs-wordlist.txt -------------------------------------------------------------------------------- /crawler/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/crawler/spider.py -------------------------------------------------------------------------------- /crawler/subdomains-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/crawler/subdomains-wordlist.txt -------------------------------------------------------------------------------- /dns_spoofer/redirect_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/dns_spoofer/redirect_user.py -------------------------------------------------------------------------------- /file_interceptor/replace_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/file_interceptor/replace_downloads.py -------------------------------------------------------------------------------- /file_interceptor/replace_downloads_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/file_interceptor/replace_downloads_https.py -------------------------------------------------------------------------------- /mac_changer/mac_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/mac_changer/mac_changer.py -------------------------------------------------------------------------------- /malware/get_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/malware/get_passwords.py -------------------------------------------------------------------------------- /malware/get_wifi_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/malware/get_wifi_passwords.py -------------------------------------------------------------------------------- /malware/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/malware/keylogger.py -------------------------------------------------------------------------------- /network_discover/network_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/network_discover/network_discover.py -------------------------------------------------------------------------------- /packet_sniffer/packet_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/packet_sniffer/packet_sniffer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /vulnerability_scanner/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianzsh/python-hacking-tools/HEAD/vulnerability_scanner/scanner.py --------------------------------------------------------------------------------