From 9ad792fcf7306396fa3a2d2befb8807abd9988e6 Mon Sep 17 00:00:00 2001 From: Nicola Rossello Date: Fri, 13 Oct 2023 11:39:00 +0200 Subject: [PATCH] Fix shitty readme --- README.md | 41 +++++++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 121801a..f20847d 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,31 @@ + + + ████████╗ ██████╗ ██████╗ ██╗ ██╗██╗ + ╚══██╔══╝██╔═══██╗██╔══██╗╚██╗██╔╝██║ + ██║ ██║ ██║██████╔╝ ╚███╔╝ ██║ + ██║ ██║ ██║██╔══██╗ ██╔██╗ ██║ + ██║ ╚██████╔╝██║ ██║██╔╝ ██╗██║ + ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ + + + Torxi needs an up and running Docker environment and a non-default docker network. Let's create one: - docker network create --driver=bridge --subnet=192.168.0.0/24 torxi_net -==== Gateway ==== - echo -e 'FROM alpine:latest \n'\ - 'RUN apk add --update tor iptables iproute2 curl' |\ - docker build -t "torxi_gw" - - -==== Workstation ==== + docker network create --driver=bridge --subnet=192.168.0.0/24 torxi_net + +## Gateway + echo -e 'FROM alpine:latest \n'\ + 'RUN apk add --update tor iptables iproute2 curl' |\ + docker build -t "torxi_gw" - + +## Workstation https://www.kali.org/news/kali-linux-metapackages/ - echo -e 'FROM kalilinux/kali-rolling:latest \n\n'\ - 'RUN apt-get update \n\n'\ - 'RUN apt-get dist-upgrade -y \n\n'\ - 'RUN apt-get install -y apt-utils xfce4 xfce4-terminal kali-linux-core metasploit-framework \n\n'\ - 'RUN apt-get install -y iproute2 curl firefox-esr vim autocutsel iputils-ping \n\n'\ - 'RUN apt-get install -y apt-utils novnc dbus-x11 x11vnc tightvncserver ' |\ - docker build -t "torxi_ws" - + + echo -e 'FROM kalilinux/kali-rolling:latest \n\n'\ + 'RUN apt-get update \n\n'\ + 'RUN apt-get dist-upgrade -y \n\n'\ + 'RUN apt-get install -y apt-utils xfce4 xfce4-terminal kali-linux-core metasploit-framework \n\n'\ + 'RUN apt-get install -y iproute2 curl firefox-esr vim autocutsel iputils-ping \n\n'\ + 'RUN apt-get install -y apt-utils novnc dbus-x11 x11vnc tightvncserver ' |\ + docker build -t "torxi_ws" -