A personalized Arch Linux toolkit comprising bash scripts and hacking tools designed for penetration testing and red teaming.
My entire hacker toolkit ready for to run on a vanilla Arch Linux installation.
This tool is intended for penetration testers and red teamers who want a ready-to-use, comprehensive hacking environment on a vanilla Arch Linux installation. It automates the installation and configuration of essential exploitation and red team tools, streamlining setup and enabling quick deployment both locally and remotely.
This toolkit assumes root privileges and full control over the Arch Linux system, including system updates and kernel upgrades. It is designed for users comfortable with managing and potentially disrupting their system environment. No official support is provided, and the toolkit may change or be removed without notice. Use at your own risk.
Clone the repository to /usr/local/src: git clone git@github.com:krisnova/home.git
Change directory to the cloned repo: cd home
Run the installer with root privileges: sudo -E make install
Ensure you have yay installed for AUR package management
Be prepared for a full system update and latest kernel installation
cd /usr/local/src && git clone git@github.com:krisnova/home.git && cd home
Clone the repository locally and navigate into it.
sudo -E make install
Run the installer script to set up the toolkit and manage system-wide installation.
${HOME}/bin/novix-remote-from-here root@10.0.0.100
Remotely provision a novix installation on a remote Arch Linux server via SSH.
while read $LINE; do echo $LINE; done <file.txt
Example bash snippet to loop over lines in a file.
for i in {1..100}; do echo "Running $i/100"; done
Example bash snippet to iterate a fixed number of times.
VAR="${VAR:-'default-value-here'}"
Set a default value for a variable that can be overridden at script launch.
for str in a b c d e f; do # do something with $str; done
Example bash snippet to loop over a set of strings.