This repository contains an Ansible playbook to install various security tools on a Kali Linux system ONLY. Additionally, there is a separate script to install Ansible on Debian (kali)-based systems before running the playbook.
- A Kali that is barebones
- Internet access to download necessary packages
- sudo/root privileges
If Ansible is not already installed on your system, you need to run the install_ansible.sh
script before using the playbook.
- Open a terminal.
- Navigate to the repository directory:
cd offensive-tools
- Run the installation script:
chmod +x install_ansible.sh ./install_ansible.sh
- Verify Ansible installation:
ansible --version
Once Ansible is installed, you can run the playbook to install security tools.
- Ensure you are in the repository directory:
cd offensive-tools
- Run the Ansible playbook:
ansible-playbook -i "localhost," -c local install_infosec_tools.yml
- The playbook installs various security tools such as Hydra, Nikto, Burp Suite, and more.
- It also sets up a Python virtual environment.
- Ensure you have sudo privileges before running the playbook.
- If you encounter permission issues, try running with
sudo
:sudo ansible-playbook -i "localhost," -c local install_infosec_tools.yml
- If an installation fails, check your internet connection and re-run the script.
This project is licensed under the MIT License.
Jesse F. Moore