aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2021-02-02 15:00:10 +0000
committerbloodstalker <thabogre@gmail.com>2021-02-02 15:00:10 +0000
commit5bffed57119c00ed8511bc33c08506910abd3710 (patch)
treea73f216cdecf04f48d02fe67542afaebfa12f30f
parentmatrix server update...almost working...WIP (diff)
downloaddockerimages-5bffed57119c00ed8511bc33c08506910abd3710.tar.gz
dockerimages-5bffed57119c00ed8511bc33c08506910abd3710.zip
update
-rw-r--r--nushin/docker-compose.yaml20
-rw-r--r--nushin/spoofer/Dockerfile4
-rw-r--r--nushin/victim/Dockerfile4
3 files changed, 28 insertions, 0 deletions
diff --git a/nushin/docker-compose.yaml b/nushin/docker-compose.yaml
new file mode 100644
index 0000000..8ae0a51
--- /dev/null
+++ b/nushin/docker-compose.yaml
@@ -0,0 +1,20 @@
+version: "3.4"
+services:
+ victim:
+ image: victim
+ build:
+ context: ./victim
+ networks:
+ - hacknet
+ entrypoint: ["tail", "-f", "/dev/null"]
+ spoofer:
+ image: spoofer
+ build:
+ context: ./spoofer
+ networks:
+ - hacknet
+ entrypoint: ["tail", "-f", "/dev/null"]
+networks:
+ hacknet:
+ driver: overlay
+ attachable: true
diff --git a/nushin/spoofer/Dockerfile b/nushin/spoofer/Dockerfile
new file mode 100644
index 0000000..7bf4b33
--- /dev/null
+++ b/nushin/spoofer/Dockerfile
@@ -0,0 +1,4 @@
+FROM ubuntu:20.04
+
+RUN apt update && apt ugprade -y
+RUN apt install -y ettercap
diff --git a/nushin/victim/Dockerfile b/nushin/victim/Dockerfile
new file mode 100644
index 0000000..1e0b9df
--- /dev/null
+++ b/nushin/victim/Dockerfile
@@ -0,0 +1,4 @@
+FROM debian:buster-slim
+
+RUN apt update && apt upgrade -y
+RUN apt install snort -y