Skip to content

Building the OSINT VM

Jason Kregting edited this page Nov 22, 2020 · 2 revisions

Building the ISO file on Docker

You will need a host\vm with Docker-engine installed. Installation guide can be found here: https://docs.docker.com/engine/install/ Once you have docker install, you just need to run:

docker pull freed0m/tlosint-vm docker run --privileged -v $(pwd)/data:/data freed0m/tlosint-vm

Once the docker container will finish running, you will be able to locate the ISO file inside a folder named "data" in the location you ran the commands. Now you can use the ISO file to install the tlosint vm.

Building the ISO file on your Debian host or Debian VM

Setup This build has only been tested on a pre-existing Kali environment, as recommended by Offensive Security.

sudo wget -O - https://raw.githubusercontent.com/tracelabs/tlosint-live/master/build_tracelabsiso_recipe.sh | sudo bash

If the build process is successful, a .iso file will be created in the /opt/live-build-config/images directory. The .iso file can be used for live boot or to install the Virtual Machine. The .iso file can also be converted to a .ova file using the ovftool as outlined in the "Converting to an OVA" page (https://www.kali.org/docs/virtualization/converting-to-ova/).

Clone this wiki locally