├── README.md ├── arp_spoof └── arp_spoof.py ├── arp_spoof_detector └── arp_spoof_detector.py ├── code_injector └── code_injector.py ├── mac_changer └── mac-changer.py ├── malware ├── download_and_execute.py ├── download_execute_and_report.py ├── download_file.py ├── execute_and_report.py ├── execute_command.py ├── keylogger.py ├── listener.py ├── reverse_backdoor.py ├── samples │ ├── reverse_backdoor.exe │ └── sample.txt └── trojan.py ├── network_scanner ├── network_scanner.py └── network_scanner_vendor.py ├── packet_sniffer └── packet_sniffer.py ├── requirements.txt ├── spoofer ├── dns_spoof │ └── dns_spoof.py └── replace_downloads │ └── replace_downloads.py ├── tcm_tools ├── bash_scripts │ └── ipsweep.sh └── python_scripts │ └── socket_scanner.py └── web_hacking ├── extract_forms └── extract_forms.py ├── guess_login ├── guess_login.py └── passwords.txt ├── spider └── spider.py ├── vulnerability_scanner ├── __pycache__ │ ├── scanner.cpython-37.pyc │ └── scanner.cpython-38.pyc ├── scanner.py └── vulnerability_scanner.py └── web_crawler ├── directories_wordlist.txt ├── subdomains_wordlist.txt ├── web_crawler.py └── wordlist.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/README.md -------------------------------------------------------------------------------- /arp_spoof/arp_spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/arp_spoof/arp_spoof.py -------------------------------------------------------------------------------- /arp_spoof_detector/arp_spoof_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/arp_spoof_detector/arp_spoof_detector.py -------------------------------------------------------------------------------- /code_injector/code_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/code_injector/code_injector.py -------------------------------------------------------------------------------- /mac_changer/mac-changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/mac_changer/mac-changer.py -------------------------------------------------------------------------------- /malware/download_and_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/download_and_execute.py -------------------------------------------------------------------------------- /malware/download_execute_and_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/download_execute_and_report.py -------------------------------------------------------------------------------- /malware/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/download_file.py -------------------------------------------------------------------------------- /malware/execute_and_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/execute_and_report.py -------------------------------------------------------------------------------- /malware/execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/execute_command.py -------------------------------------------------------------------------------- /malware/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/keylogger.py -------------------------------------------------------------------------------- /malware/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/listener.py -------------------------------------------------------------------------------- /malware/reverse_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/reverse_backdoor.py -------------------------------------------------------------------------------- /malware/samples/reverse_backdoor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/samples/reverse_backdoor.exe -------------------------------------------------------------------------------- /malware/samples/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/samples/sample.txt -------------------------------------------------------------------------------- /malware/trojan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/malware/trojan.py -------------------------------------------------------------------------------- /network_scanner/network_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/network_scanner/network_scanner.py -------------------------------------------------------------------------------- /network_scanner/network_scanner_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/network_scanner/network_scanner_vendor.py -------------------------------------------------------------------------------- /packet_sniffer/packet_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/packet_sniffer/packet_sniffer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /spoofer/dns_spoof/dns_spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/spoofer/dns_spoof/dns_spoof.py -------------------------------------------------------------------------------- /spoofer/replace_downloads/replace_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/spoofer/replace_downloads/replace_downloads.py -------------------------------------------------------------------------------- /tcm_tools/bash_scripts/ipsweep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/tcm_tools/bash_scripts/ipsweep.sh -------------------------------------------------------------------------------- /tcm_tools/python_scripts/socket_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/tcm_tools/python_scripts/socket_scanner.py -------------------------------------------------------------------------------- /web_hacking/extract_forms/extract_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/extract_forms/extract_forms.py -------------------------------------------------------------------------------- /web_hacking/guess_login/guess_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/guess_login/guess_login.py -------------------------------------------------------------------------------- /web_hacking/guess_login/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/guess_login/passwords.txt -------------------------------------------------------------------------------- /web_hacking/spider/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/spider/spider.py -------------------------------------------------------------------------------- /web_hacking/vulnerability_scanner/__pycache__/scanner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/vulnerability_scanner/__pycache__/scanner.cpython-37.pyc -------------------------------------------------------------------------------- /web_hacking/vulnerability_scanner/__pycache__/scanner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/vulnerability_scanner/__pycache__/scanner.cpython-38.pyc -------------------------------------------------------------------------------- /web_hacking/vulnerability_scanner/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/vulnerability_scanner/scanner.py -------------------------------------------------------------------------------- /web_hacking/vulnerability_scanner/vulnerability_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/vulnerability_scanner/vulnerability_scanner.py -------------------------------------------------------------------------------- /web_hacking/web_crawler/directories_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/web_crawler/directories_wordlist.txt -------------------------------------------------------------------------------- /web_hacking/web_crawler/subdomains_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/web_crawler/subdomains_wordlist.txt -------------------------------------------------------------------------------- /web_hacking/web_crawler/web_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/web_crawler/web_crawler.py -------------------------------------------------------------------------------- /web_hacking/web_crawler/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancv3d/Hacker_Tool_Automation/HEAD/web_hacking/web_crawler/wordlist.txt --------------------------------------------------------------------------------