A script for easily building customized images of pentesting distros (Kali and ParrotSec).
Go to file
Kaj Forney c89cb85217 Reducing size of Parrot submodule.
Former-commit-id: f79d02d600e321f84a06b7dc5f060b1c2fb62d1c
Former-commit-id: 11037ab0c2b8d68bf69b6f92f799799910fedc55
2019-10-29 20:38:46 -06:00
build Add directories. 2018-09-26 17:00:39 -06:00
config Remove deprecated VS Code extension. 2019-10-29 16:26:50 -06:00
debs Update VS Codium. 2019-10-10 14:44:19 -06:00
filesystem Update submodule, remove CPU-hungry MATE applet. 2019-10-10 15:10:16 -06:00
images Add directories. 2018-09-26 17:00:39 -06:00
logs Quality of life update. 2019-01-25 00:19:04 -07:00
modules Reducing size of Parrot submodule. 2019-10-29 20:38:46 -06:00
.gitignore Add .gitignore file. 2018-11-16 15:01:00 -07:00
.gitmodules ...adding submodules! 2018-11-07 16:32:09 -07:00
LICENSE Initial commit 2018-09-05 17:05:27 -06:00
README.md Quality of life update. 2019-01-25 00:19:04 -07:00
runme.sh Fix path. 2019-08-27 18:35:13 -06:00

Pentest Distro Builder

This script automates the process of building the most common pentesting Linux distributions, Kali Linux and Parrot Security OS.

Running

Clone this repository with git clone --recursive, then make whatever changes you wish to make.

  • Add any .deb files to the debs/ folder that you want installed into the image.
  • Add any files to the filesystem/ folder that you want on the final system.
  • Add any extra software from the repository you wish to install to the config/software.list.chroot file.
  • Add any commands you want to have run during the build process to the config/pentest-distro-builder.chroot file.

When you're ready to build, run sudo ./runme.sh . Once it's complete, the finished image will be copied to the images/ folder, and a log file will be created in the logs/ folder.

If you run the script without any options, it will build whichever OS you are currently running, and prompt for which desktop environment and repository you wish to use. If you wish, however, you can manually specify these options instead (for example, to script an image to be built nightly or weekly):

Flag Option Description
-u Unattended mode Skip the menu (required for the other options to function)
-l Distribution Can be either "Kali" or "Parrot"
-d Desktop environment Can be one of "cinnamon", "gnome", "kde", "lxde", "mate", or "xfce"
-r Repository (optional) Can be either "default" for the distribution's default repo, or an IP address

Examples

sudo ./runme.sh -u -l Kali -d mate -r 192.168.0.30

This will build a Kali Linux .iso, with the MATE desktop environment, using a local repository at 192.168.0.30

sudo ./runme.sh -u -l Parrot -d cinnamon

This will build a Parrot Security OS .iso, with the Cinnamon desktop environment, using the default Parrot repository.

If -r is unspecified, then the default will be used.