Skip to content

Commit eaa920a

Browse files
committed
Refactored the whole project
List of changes + Handling information about a tool has been improved a lot by providing a `HackingTool` class, which takes care of showing the options, running the selected option, executing the required commands + This class is designed with flexibililty and simplicity in mind, so adding a new tool is a lot easier, mention TITLE, DESCRIPTION, list of INSTALL_COMMANDS, RUN_COMMANDS and PROJECT_URL and there you go... + grouping all the `HackingTool`s is also made super simpler by providing a `HackingToolsCollection` class which groups the tools into their respective categories. Just add the instances of `HackingTool` classes to the TOOLS property of the `HackingToolsCollection`. + Refactored all the tools into separate files based on their categories. + Added a READM_template.md and generate_readme.py script to automatically generate Table of contents and the list of tools available automatically. + Now each tool in the README.md points to its project url if provided. This makes it easier to visit the project from the readme.
1 parent de461ee commit eaa920a

33 files changed

+2610
-3186
lines changed

README.md

+169-141
Original file line numberDiff line numberDiff line change
@@ -22,151 +22,179 @@
2222

2323

2424
# Hackingtool Menu 🧰
25-
- AnonSurf
26-
- Information Gathering
27-
- Password Attack
28-
- Wireless Attack
29-
- SQL Injection Tools
30-
- Phishing Attack
31-
- Web Attack Tool
32-
- Post exploitation
33-
- Forensic Tools
34-
- Payload Creator
35-
- Router Exploit
36-
- Wifi Jamming
37-
- XSS Attack Tool
38-
- Reverse Engineering
39-
- SocialMedia Finder
40-
- DDos Attack Tools
41-
- Steganography Tools
42-
- IDN Homograph Attack
43-
- Hash Cracking Tools
44-
- SocialMedia Attack
45-
- Android Hack
46-
- RAT Tools
47-
- Web Crawling
48-
- Payload Injector
49-
- Update System
50-
51-
### AnonSurf
52-
- Anonmously Surf
53-
- Multitor
54-
### Information Gathering
55-
- Nmap
56-
- Dracnmap
57-
- Port Scanning
58-
- Host To IP
59-
- Xerosploit
60-
- Infoga - Email OSINT
61-
- ReconSpider
62-
- RED HAWK (All In One Scanning)
63-
- ReconDog
64-
- Striker
65-
- SecretFinder
66-
- Port Scanner
67-
- Breacher
68-
### Password Attack
69-
- Cupp
70-
- WordlistCreator
71-
- Goblin WordGenerator
72-
- Credential reuse attacks
73-
- Wordlist (Contain 1.4 Billion Pass)
74-
### Wireless Attack
75-
- WiFi-Pumpkin
76-
- pixiewps
77-
- Bluetooth Honeypot GUI Framework
78-
- Fluxion
79-
- Wifiphisher
80-
- Wifite
81-
- EvilTwin
82-
### SQL Injection Tools
83-
- sqlmap tool
84-
- NoSqlMap
85-
- Damn Small SQLi Scanner
86-
- Explo
87-
- Blisqy - Exploit Time-based blind-SQL injection
88-
- Leviathan - Wide Range Mass Audit Toolkit
89-
- SQLScan
90-
### SocialMedia Attack
91-
- Instagram Attack
92-
- AllinOne SocialMedia Attack
93-
- Facebook Attack
94-
- Application Checker
95-
### Android Attack
96-
- Keydroid
97-
- MySMS
98-
- Lockphish (Grab target LOCK PIN)
99-
- DroidCam (Capture Image)
100-
- EvilApp (Hijack Session)
101-
### Phishing Attack
102-
- Setoolkit
103-
- SocialFish
104-
- HiddenEye
105-
- Evilginx2
106-
- Shellphish
107-
- BlackEye
108-
- I-See-You(Get Location using phishing attack)
109-
- SayCheese (Grab target's Webcam Shots)
110-
- QR Code Jacking
111-
### Web Attack
112-
- SlowLoris
25+
- [Anonymously Hiding Tools](#anonymously-hiding-tools)
26+
- [Information gathering tools](#information-gathering-tools)
27+
- [Wordlist Generator](#wordlist-generator)
28+
- [Wireless attack tools](#wireless-attack-tools)
29+
- [SQL Injection Tools](#sql-injection-tools)
30+
- [Phishing attack tools](#phishing-attack-tools)
31+
- [Web Attack tools](#web-attack-tools)
32+
- [Post exploitation tools](#post-exploitation-tools)
33+
- [Forensic tools](#forensic-tools)
34+
- [Payload creation tools](#payload-creation-tools)
35+
- [Exploit framework](#exploit-framework)
36+
- [Reverse engineering tools](#reverse-engineering-tools)
37+
- [DDOS Attack Tools](#ddos-attack-tools)
38+
- [Remote Administrator Tools (RAT)](#remote-administrator-tools--rat-)
39+
- [XSS Attack Tools](#xss-attack-tools)
40+
- [Steganograhy tools](#steganograhy-tools)
41+
- [Other tools](#other-tools)
42+
- [SocialMedia Bruteforce](#socialmedia-bruteforce)
43+
- [Android Hacking tools](#android-hacking-tools)
44+
- [IDN Homograph Attack](#idn-homograph-attack)
45+
- [Email Verify tools](#email-verify-tools)
46+
- [Hash cracking tools](#hash-cracking-tools)
47+
- [Wifi Deauthenticate](#wifi-deauthenticate)
48+
- [SocialMedia Finder](#socialmedia-finder)
49+
- [Payload Injector](#payload-injector)
50+
- [Web crawling](#web-crawling)
51+
- [Mix tools](#mix-tools)
52+
53+
54+
### Anonymously Hiding Tools
55+
- [Anonmously Surf](https://github.com/Und3rf10w/kali-anonsurf)
56+
- [Multitor](https://github.com/trimstray/multitor)
57+
### Information gathering tools
58+
- [Network Map (nmap)](https://github.com/nmap/nmap)
59+
- [Dracnmap](https://github.com/Screetsec/Dracnmap)
60+
- Port scanning
61+
- Host to IP
62+
- [Xerosploit](https://github.com/LionSec/xerosploit)
63+
- [RED HAWK (All In One Scanning)](https://github.com/Tuhinshubhra/RED_HAWK)
64+
- [ReconSpider(For All Scaning)](https://github.com/bhavsec/reconspider)
65+
- IsItDown (Check Website Down/Up)
66+
- [Infoga - Email OSINT](https://github.com/m4ll0k/Infoga)
67+
- [ReconDog](https://github.com/s0md3v/ReconDog)
68+
- [Striker](https://github.com/s0md3v/Striker)
69+
- [SecretFinder (like API & etc)](https://github.com/m4ll0k/SecretFinder)
70+
- [Find Info Using Shodan](https://github.com/m4ll0k/Shodanfy.py)
71+
- [Port Scanner - rang3r](https://github.com/floriankunushevci/rang3r)
72+
- [Breacher](https://github.com/s0md3v/Breacher)
73+
### Wordlist Generator
74+
- [Cupp](https://github.com/Mebus/cupp.git)
75+
- [WordlistCreator](https://github.com/Z4nzu/wlcreator)
76+
- [Goblin WordGenerator](https://github.com/UndeadSec/GoblinWordGenerator.git)
77+
- [Password list (1.4 Billion Clear Text Password)](https://github.com/Viralmaniar/SMWYG-Show-Me-What-You-Got)
78+
### Wireless attack tools
79+
- [WiFi-Pumpkin](https://github.com/P0cL4bs/wifipumpkin3)
80+
- [pixiewps](https://github.com/wiire/pixiewps)
81+
- [Bluetooth Honeypot GUI Framework](https://github.com/andrewmichaelsmith/bluepot)
82+
- [Fluxion](https://github.com/thehackingsage/Fluxion)
83+
- [Wifiphisher](https://github.com/wifiphisher/wifiphisher)
84+
- [Wifite](https://github.com/derv82/wifite2)
85+
- [EvilTwin](https://github.com/Z4nzu/fakeap)
86+
- [Fastssh](https://github.com/Z4nzu/fastssh)
87+
- Howmanypeople
88+
### SQL Injection Tools
89+
- [Sqlmap tool](https://github.com/sqlmapproject/sqlmap)
90+
- [NoSqlMap](https://github.com/codingo/NoSQLMap)
91+
- [Damn Small SQLi Scanner](https://github.com/stamparm/DSSS)
92+
- [Explo](https://github.com/dtag-dev-sec/explo)
93+
- [Blisqy - Exploit Time-based blind-SQL injection](https://github.com/JohnTroony/Blisqy)
94+
- [Leviathan - Wide Range Mass Audit Toolkit](https://github.com/leviathan-framework/leviathan)
95+
- [SQLScan](https://github.com/Cvar1984/sqlscan)
96+
### Phishing attack tools
97+
- [Setoolkit](https://github.com/trustedsec/social-engineer-toolkit)
98+
- [SocialFish](https://github.com/UndeadSec/SocialFish)
99+
- [HiddenEye](https://github.com/DarkSecDevelopers/HiddenEye)
100+
- [Evilginx2](https://github.com/kgretzky/evilginx2)
101+
- [I-See_You(Get Location using phishing attack)](https://github.com/Viralmaniar/I-See-You)
102+
- [SayCheese (Grab target's Webcam Shots)](https://github.com/hangetzzu/saycheese)
103+
- [QR Code Jacking](https://github.com/cryptedwolf/ohmyqr)
104+
- [ShellPhish](https://github.com/An0nUD4Y/shellphish)
105+
- [BlackPhish](https://github.com/iinc0gnit0/BlackPhish)
106+
### Web Attack tools
107+
- [Web2Attack](https://github.com/santatic/web2attack)
113108
- Skipfish
114-
- SubDomain Finder
115-
- CheckURL
116-
- Blazy
117-
- Sub-Domain TakeOver
118-
### Post Explotation
119-
- Vegile - Ghost In The Shell
120-
- Chrome Keylogger
121-
### Forensic Tool
122-
- Bulk_extractor
123-
- Disk Clone and ISO Image Aquire
124-
- AutoSpy
125-
- Toolsley
109+
- [SubDomain Finder](https://github.com/aboul3la/Sublist3r)
110+
- [CheckURL](https://github.com/UndeadSec/checkURL)
111+
- [Blazy(Also Find ClickJacking)](https://github.com/UltimateHackers/Blazy)
112+
- [Sub-Domain TakeOver](https://github.com/m4ll0k/takeover)
113+
- [Dirb](https://gitlab.com/kalilinux/packages/dirb)
114+
### Post exploitation tools
115+
- [Vegile - Ghost In The Shell](https://github.com/Screetsec/Vegile)
116+
- [Chrome Keylogger](https://github.com/UndeadSec/HeraKeylogger)
117+
### Forensic tools
118+
- Autopsy
126119
- Wireshark
127-
### Payload Generator
128-
- The FatRat*
129-
- Brutal
130-
- Stitch
131-
- MSFvenom Payload Creator
132-
- Venom Shellcode Generator
133-
- Spycam
134-
- Mob-Droid
135-
### Exploit Framework
136-
- RouterSploit
137-
- WebSploit
138-
- Commix
139-
- Web2Attack
140-
- Fastssh
141-
### SocialMedia Finder
142-
- Find SocialMedia By Facial Recognation System
143-
- Find SocialMedia By UserName
144-
- Sherlock
145-
- SocialScan
146-
### Steganography
120+
- [Bulk extractor](https://github.com/simsong/bulk_extractor)
121+
- [Disk Clone and ISO Image Aquire](https://guymager.sourceforge.io/)
122+
- [Toolsley](https://www.toolsley.com/)
123+
### Payload creation tools
124+
- [The FatRat](https://github.com/Screetsec/TheFatRat)
125+
- [Brutal](https://github.com/Screetsec/Brutal)
126+
- [Stitch](https://nathanlopez.github.io/Stitch)
127+
- [MSFvenom Payload Creator](https://github.com/g0tmi1k/msfpc)
128+
- [Venom Shellcode Generator](https://github.com/r00t-3xp10it/venom)
129+
- [Spycam](https://github.com/thelinuxchoice/spycam)
130+
- [Mob-Droid](https://github.com/kinghacker0/Mob-Droid)
131+
- [Enigma](https://github.com/UndeadSec/Enigma)
132+
### Exploit framework
133+
- [RouterSploit](https://github.com/threat9/routersploit)
134+
- [WebSploit](https://github.com/The404Hacking/websploit )
135+
- [Commix](https://github.com/commixproject/commix)
136+
- [Web2Attack](https://github.com/santatic/web2attack)
137+
### Reverse engineering tools
138+
- [Androguard](https://github.com/androguard/androguard )
139+
- [Apk2Gold](https://github.com/lxdvs/apk2gold )
140+
- [JadX](https://github.com/skylot/jadx)
141+
### DDOS Attack Tools
142+
- SlowLoris
143+
- [Asyncrone | Multifunction SYN Flood DDoS Weapon](https://github.com/fatihsnsy/aSYNcrone)
144+
- [UFOnet](https://github.com/epsylon/ufonet)
145+
- [GoldenEye](https://github.com/jseidl/GoldenEye)
146+
### Remote Administrator Tools (RAT)
147+
- [Stitch](https://github.com/nathanlopez/Stitch)
148+
- [Pyshell](https://github.com/knassar702/pyshell)
149+
### XSS Attack Tools
150+
- [DalFox(Finder of XSS)](https://github.com/hahwul/dalfox)
151+
- [XSS Payload Generator](https://github.com/capture0x/XSS-LOADER.git)
152+
- [Extended XSS Searcher and Finder](https://github.com/Damian89/extended-xss-search)
153+
- [XSS-Freak](https://github.com/PR0PH3CY33/XSS-Freak)
154+
- [XSpear](https://github.com/hahwul/XSpear)
155+
- [XSSCon](https://github.com/menkrep1337/XSSCon)
156+
- [XanXSS](https://github.com/Ekultek/XanXSS)
157+
- [Advanced XSS Detection Suite](https://github.com/UltimateHackers/XSStrike)
158+
- [RVuln](https://github.com/iinc0gnit0/RVuln)
159+
### Steganograhy tools
147160
- SteganoHide
148161
- StegnoCracker
149-
- Whitespace
150-
### Ddos Attack tool
151-
- SlowLoris
152-
- SYN Flood DDoS Weapon
153-
- UFOnet
154-
- GoldenEye
155-
### XSS Attack tool
156-
- DalFox(Finder of XSS)
157-
- XSS Payload Generator
158-
- Advanced XSS Detection Suite
159-
- Extended XSS Searcher and Finder
160-
- XSS-Freak
161-
- XSpear
162-
- XSSCon
163-
- XanXSS
164-
### IDN Homograph
165-
- EvilURL
166-
### Email Verifier
167-
- KnockMail
168-
### Hash Cracking Tool
169-
- Hash Buster
162+
- [Whitespace](https://github.com/beardog108/snow10)
163+
### Other tools
164+
#### SocialMedia Bruteforce
165+
- [Instagram Attack](https://github.com/chinoogawa/instaBrute)
166+
- [AllinOne SocialMedia Attack](https://github.com/Matrix07ksa/Brute_Force)
167+
- [Facebook Attack](https://github.com/Matrix07ksa/Brute_Force)
168+
- [Application Checker](https://github.com/jakuta-tech/underhanded)
169+
#### Android Hacking tools
170+
- [Keydroid](https://github.com/F4dl0/keydroid)
171+
- [MySMS](https://github.com/papusingh2sms/mysms)
172+
- [Lockphish (Grab target LOCK PIN)](https://github.com/JasonJerry/lockphish)
173+
- [DroidCam (Capture Image)](https://github.com/kinghacker0/WishFish)
174+
- [EvilApp (Hijack Session)](https://github.com/crypticterminal/EvilApp)
175+
- [HatCloud(Bypass CloudFlare for IP)](https://github.com/HatBashBR/HatCloud)
176+
#### IDN Homograph Attack
177+
- [EvilURL](https://github.com/UndeadSec/EvilURL)
178+
#### Email Verify tools
179+
- [Knockmail](https://github.com/4w4k3/KnockMail)
180+
#### Hash cracking tools
181+
- [Hash Buster](https://github.com/s0md3v/Hash-Buster)
182+
#### Wifi Deauthenticate
183+
- [WifiJammer-NG](https://github.com/MisterBianco/wifijammer-ng)
184+
- [KawaiiDeauther](https://github.com/aryanrtm/KawaiiDeauther)
185+
#### SocialMedia Finder
186+
- [Find SocialMedia By Facial Recognation System](https://github.com/Greenwolf/social_mapper)
187+
- [Find SocialMedia By UserName](https://github.com/xHak9x/finduser)
188+
- [Sherlock](https://github.com/sherlock-project/sherlock)
189+
- [SocialScan | Username or Email](https://github.com/iojw/socialscan)
190+
#### Payload Injector
191+
- [Debinject](https://github.com/UndeadSec/Debinject)
192+
- [Pixload](https://github.com/chinarulezzz/pixload)
193+
#### Web crawling
194+
- [Gospider](https://github.com/jaeles-project/gospider)
195+
#### Mix tools
196+
- Terminal Multiplexer
197+
170198

171199
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png)
172200
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A0.png)

README_template.md

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
### All in One Hacking tool For Hackers🥇
2+
![](https://img.shields.io/github/license/Z4nzu/hackingtool)
3+
![](https://img.shields.io/github/issues/Z4nzu/hackingtool)
4+
![](https://img.shields.io/github/issues-closed/Z4nzu/hackingtool)
5+
![](https://img.shields.io/badge/Python-3-blue)
6+
![](https://img.shields.io/github/forks/Z4nzu/hackingtool)
7+
![](https://img.shields.io/github/stars/Z4nzu/hackingtool)
8+
![](https://img.shields.io/github/last-commit/Z4nzu/hackingtool)
9+
[![HitCount](http://hits.dwyl.com/Z4nzu/hackingtool.svg)](http://hits.dwyl.com/Z4nzu/hackingtool)
10+
![](https://img.shields.io/badge/platform-Linux%20%7C%20KaliLinux%20%7C%20ParrotOs-blue)
11+
12+
#### Install Kali Linux in WIndows10 Without VirtualBox [YOUTUBE](https://youtu.be/BsFhpIDcd9I)
13+
14+
## Update Available V1.1.0 🚀
15+
- [x] Added New Tools
16+
- [x] Reverse Engineering
17+
- [x] RAT Tools
18+
- [x] Web Crawling
19+
- [x] Payload Injector
20+
- [x] Multitor Tools update
21+
- [X] Added Tool in wifijamming
22+
23+
24+
# Hackingtool Menu 🧰
25+
{{toc}}
26+
27+
{{tools}}
28+
29+
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png)
30+
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A0.png)
31+
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A1.png)
32+
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A2.png)
33+
![](https://github.com/Z4nzu/hackingtool/blob/master/images/A4.png)
34+
35+
## Installation For Linux <img src="https://konpa.github.io/devicon/devicon.git/icons/linux/linux-original.svg" alt="linux" width="25" height="25"/></p><p align="center">
36+
37+
#### This Tool Must Run As ROOT !!!
38+
39+
git clone https://github.com/Z4nzu/hackingtool.git
40+
41+
chmod -R 755 hackingtool
42+
43+
cd hackingtool
44+
45+
sudo pip3 install -r requirement.txt
46+
47+
bash install.sh
48+
49+
sudo hackingtool
50+
51+
After Following All Steps Just Type In Terminal **root@kaliLinux:~** **hackingtool**
52+
53+
#### Thanks to original Author of the tools used in hackingtool
54+
55+
<img src ="https://img.shields.io/badge/Important-notice-red" />
56+
<h4>Please Don't Use for illegal Activity</h4>
57+
58+
### To do
59+
- [ ] Release Tool
60+
- [ ] Add Tools for CTF
61+
- [ ] Want to do automatic
62+
63+
## Social Media :mailbox_with_no_mail:
64+
[![Twitter](https://img.shields.io/twitter/url?color=%231DA1F2&label=follow&logo=twitter&logoColor=%231DA1F2&style=flat-square&url=https%3A%2F%2Fwww.reddit.com%2Fuser%2FFatChicken277)](https://twitter.com/_Zinzu07)
65+
[![GitHub](https://img.shields.io/badge/-GitHub-181717?style=flat-square&logo=github&link=https://github.com/Z4nzu/)](https://github.com/Z4nzu/)
66+
##### Your Favourite Tool is not in hackingtool or Suggestions Please [CLICK HERE](https://forms.gle/b235JoCKyUq5iM3t8)
67+
![Z4nzu's github stats](https://github-readme-stats.vercel.app/api?username=Z4nzu&show_icons=true&title_color=fff&icon_color=79ff97&text_color=9f9f9f&bg_color=151515)
68+
69+
<a href="https://www.buymeacoffee.com/Zinzu" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/arial-yellow.png" alt="Buy Me A Coffee" style="height: 50px !important;width: 50px !important;"></a>
70+
71+
#### Don't Forgot to share with Your Friends
72+
#### Thank you..!!

0 commit comments

Comments
 (0)