├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── custom.md ├── LICENSE ├── README.md ├── core.py ├── generate_readme.py ├── htk.py ├── images ├── h0.jpg ├── h1.jpg ├── h10.jpg ├── h11.jpg ├── h12.jpg ├── h13.jpg ├── h14.jpg ├── h15.jpg ├── h16.jpg ├── h2.jpg ├── h3.jpg ├── h4.jpg ├── h5.jpg ├── h6.jpg ├── h7.jpg ├── h8.jpg ├── h9.jpg └── main.jpg ├── requirement.txt └── tools ├── anonsurf.py ├── ddos.py ├── exploit_frameworks.py ├── forensic_tools.py ├── information_gathering_tools.py ├── other_tools.py ├── others ├── android_attack.py ├── email_verifier.py ├── hash_crack.py ├── homograph_attacks.py ├── mix_tools.py ├── payload_injection.py ├── socialmedia.py ├── socialmedia_finder.py ├── web_crawling.py └── wifi_jamming.py ├── payload_creator.py ├── phising_attack.py ├── post_exploitation.py ├── remote_administration.py ├── reverse_engineering.py ├── sql_tools.py ├── steganography.py ├── tool_manager.py ├── webattack.py ├── wireless_attack_tools.py ├── wordlist_generator.py └── xss_attack.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/README.md -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/core.py -------------------------------------------------------------------------------- /generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/generate_readme.py -------------------------------------------------------------------------------- /htk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/htk.py -------------------------------------------------------------------------------- /images/h0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h0.jpg -------------------------------------------------------------------------------- /images/h1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h1.jpg -------------------------------------------------------------------------------- /images/h10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h10.jpg -------------------------------------------------------------------------------- /images/h11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h11.jpg -------------------------------------------------------------------------------- /images/h12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h12.jpg -------------------------------------------------------------------------------- /images/h13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h13.jpg -------------------------------------------------------------------------------- /images/h14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h14.jpg -------------------------------------------------------------------------------- /images/h15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h15.jpg -------------------------------------------------------------------------------- /images/h16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h16.jpg -------------------------------------------------------------------------------- /images/h2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h2.jpg -------------------------------------------------------------------------------- /images/h3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h3.jpg -------------------------------------------------------------------------------- /images/h4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h4.jpg -------------------------------------------------------------------------------- /images/h5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h5.jpg -------------------------------------------------------------------------------- /images/h6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h6.jpg -------------------------------------------------------------------------------- /images/h7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h7.jpg -------------------------------------------------------------------------------- /images/h8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h8.jpg -------------------------------------------------------------------------------- /images/h9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/h9.jpg -------------------------------------------------------------------------------- /images/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/images/main.jpg -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | lolcat 2 | boxes 3 | flask 4 | requests 5 | -------------------------------------------------------------------------------- /tools/anonsurf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/anonsurf.py -------------------------------------------------------------------------------- /tools/ddos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/ddos.py -------------------------------------------------------------------------------- /tools/exploit_frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/exploit_frameworks.py -------------------------------------------------------------------------------- /tools/forensic_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/forensic_tools.py -------------------------------------------------------------------------------- /tools/information_gathering_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/information_gathering_tools.py -------------------------------------------------------------------------------- /tools/other_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/other_tools.py -------------------------------------------------------------------------------- /tools/others/android_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/android_attack.py -------------------------------------------------------------------------------- /tools/others/email_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/email_verifier.py -------------------------------------------------------------------------------- /tools/others/hash_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/hash_crack.py -------------------------------------------------------------------------------- /tools/others/homograph_attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/homograph_attacks.py -------------------------------------------------------------------------------- /tools/others/mix_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/mix_tools.py -------------------------------------------------------------------------------- /tools/others/payload_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/payload_injection.py -------------------------------------------------------------------------------- /tools/others/socialmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/socialmedia.py -------------------------------------------------------------------------------- /tools/others/socialmedia_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/socialmedia_finder.py -------------------------------------------------------------------------------- /tools/others/web_crawling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/web_crawling.py -------------------------------------------------------------------------------- /tools/others/wifi_jamming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/others/wifi_jamming.py -------------------------------------------------------------------------------- /tools/payload_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/payload_creator.py -------------------------------------------------------------------------------- /tools/phising_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/phising_attack.py -------------------------------------------------------------------------------- /tools/post_exploitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/post_exploitation.py -------------------------------------------------------------------------------- /tools/remote_administration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/remote_administration.py -------------------------------------------------------------------------------- /tools/reverse_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/reverse_engineering.py -------------------------------------------------------------------------------- /tools/sql_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/sql_tools.py -------------------------------------------------------------------------------- /tools/steganography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/steganography.py -------------------------------------------------------------------------------- /tools/tool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/tool_manager.py -------------------------------------------------------------------------------- /tools/webattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/webattack.py -------------------------------------------------------------------------------- /tools/wireless_attack_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/wireless_attack_tools.py -------------------------------------------------------------------------------- /tools/wordlist_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/wordlist_generator.py -------------------------------------------------------------------------------- /tools/xss_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingRanjith/hackingtoolkit/HEAD/tools/xss_attack.py --------------------------------------------------------------------------------