Enhance your penetration testing efficiency with Tabby and a set of essential Kali tools. This guide includes steps for installing Tabby, configuring Quick Commands plugin, and installing additional penetration testing tools in Kali.
- Download Tabby:
- Install Tabby.
- Go to settings (Gear wheel in top right).
- Click Plugins.
- Search for "Quick Commands" and install the plugin.
- After relaunching Tabby, go to Settings and click on Config file.
- Paste in the config from the GitHub repository.
Configure each new tab in Tabby:
- Click on the settings (Gear wheel in top right).
- Select "Profiles & Connections".
- Choose the default connection for new tabs (WSL, SSH session, etc.).
Install additional tools for Kali:
wget https://github.com/RustScan/RustScan/releases/download/2.0.1/rustscan_2.0.1_amd64.deb -O ~/Downloads/rustscan_2.0.1_amd64.deb
sudo dpkg -i ~/Downloads/rustscan_2.0.1_amd64.deb
sudo apt install gobuster
sudo apt install wordlists
sudo apt-get install dirbuster
sudo gunzip /usr/share/wordlists/rockyou.txt.tz
If you have the graphical problem as shown in the gif above, run the provided graphicalfix.bat file and it will fix itself.
- Solution provided based on microsoft/wslg#1148
Configure Quick Commands for efficient testing:
Sample Commands
qc:
cmds:
- name: Clear the screen
text: clear
...