This is a diverse collection of scripts used for OSINT, ethical hacking, and web application security testing. The scripts cover a range of tasks, from automating daily tasks to driver installation, and are suitable for use on Kali-Linux and ParrotOS. The set of tools includes TP-LINK-722N wifi drivers, which can be accessed through the provided instructions, and is cloned from the Ethical-Hacking-Tools repository. Contributions and suggestions are always welcome, and bug reports should be directed to the author, with a signature for identification.
- Set of tools I use to automate my daily tasks and for learning purposes.
- Included TP-LINK-722N wifi drivers. (check TP-LINK folder) (Instructions are given on #Usage-TP-LINK-722N)
- Tools are cloned/fetched from Ethical-Hacking-Tools
- Run the script with root privileges only (sudo).
- Download the full-font pack from here and extract it to /usr/share/fonts. [Note: This is optional]
- I haven't included a script to download burp-suite pro, but you can get it from here (https://t.me/burpsuite) (for bug-bounty hunters)
git clone https://github.com/karthik558/setup_hack_env.git
cd setup_hack_env
sudo python3 setup-hack.py
git clone https://github.com/karthik558/setup_hack_env
cd setup_hack_env && cd TP-LINK*
sudo python3 TP722N1.py
- After completing the process, reboot your pc, after rebooting, run the 2nd script.
sudo python3 TP722N2.py
- After completing the process, reboot your pc again.
- Finally after completing (script-1 & script-2) run the 3rd script to check if drivers are installed properly or not.
sudo bash injection-test.sh
- For fixing font blank issues in system-wide then download this file and extract it to /usr/share/fonts/ or /usr/share/local/fonts/
wget http://www.mediafire.com/file/on3q6yhfqzo4jh1/Fonts.zip/file
unzip Fonts.zip
sudo mv Fonts /usr/share/fonts/
- Fix Grub Resolution Issues
- Open the terminal and run the following command
sudo nano /etc/default/grub
- Find the line
GRUB_GFX_MODE="auto"
and replace it withGRUB_GFX_MODE="1920x1080x32"
- Save the file and run the following command
sudo update-grub && sudo grub-mkconfig -o /boot/grub/grub.cfg && sudo reboot
- Incase of grub-loader not showing any of your windows partition, then run the following command
sudo nano /etc/default/grub
- Add the line
GRUB_DISABLE_OS_PROBER=false
and save the file - Run the following command
sudo update-grub && sudo grub-mkconfig -o /boot/grub/grub.cfg && sudo reboot
- Remove the folder permission after installation
sudo chown -R $USER:$USER /usr/share/fonts/Fonts
- Change the default shell to bash
chsh -s /bin/bash
- Configure Proxychains
sudo nano /etc/proxychains.conf
- Find the line
strict_chain
and comment it out by adding#
at the beginning of the line - Find the line
dynamic_chain
and uncomment it by removing#
from the beginning of the line - Add the following line at the end of the file
socks5 127.0.0.1 9050
- Save the file and exit
- sudo service tor start
- proxychains firefox www.google.com (to check if tor is working or not)
Contributions to the project are welcome. If you would like to suggest an improvement or report a bug, please open an issue or submit a pull request.
This project is licensed under the MIT License.