From 257b29cf00f8ee775be744fc6f4571eaff164430 Mon Sep 17 00:00:00 2001 From: Christian Risi <75698846+CnF-Gris@users.noreply.github.com> Date: Wed, 25 Jun 2025 18:01:05 +0200 Subject: [PATCH] Changed Structure to reflect actual use --- vulnbox/DOCKERFILE => DOCKERFILE | 0 README.md | 9 +++++++++ compose.yaml | 4 ++-- {vulnbox/helper-scripts => helper-scripts}/entry.sh | 0 {services => nginx/grpc}/.gitkeep | 0 .../nginx/grpc/example.conf => nginx/grpc/conf.example | 0 {vulnbox/nginx/grpc => nginx/http}/.gitkeep | 0 .../nginx/http/example.conf => nginx/http/conf.example | 0 {vulnbox/nginx => nginx}/nginx.conf | 0 {vulnbox/nginx/http => nginx/quic}/.gitkeep | 0 {vulnbox/nginx/quic => nginx/stream}/.gitkeep | 0 vulnbox/nginx/stream/.gitkeep | 0 12 files changed, 11 insertions(+), 2 deletions(-) rename vulnbox/DOCKERFILE => DOCKERFILE (100%) create mode 100644 README.md rename {vulnbox/helper-scripts => helper-scripts}/entry.sh (100%) rename {services => nginx/grpc}/.gitkeep (100%) rename vulnbox/nginx/grpc/example.conf => nginx/grpc/conf.example (100%) rename {vulnbox/nginx/grpc => nginx/http}/.gitkeep (100%) rename vulnbox/nginx/http/example.conf => nginx/http/conf.example (100%) rename {vulnbox/nginx => nginx}/nginx.conf (100%) rename {vulnbox/nginx/http => nginx/quic}/.gitkeep (100%) rename {vulnbox/nginx/quic => nginx/stream}/.gitkeep (100%) delete mode 100644 vulnbox/nginx/stream/.gitkeep diff --git a/vulnbox/DOCKERFILE b/DOCKERFILE similarity index 100% rename from vulnbox/DOCKERFILE rename to DOCKERFILE diff --git a/README.md b/README.md new file mode 100644 index 0000000..523d7dc --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# SSL Sniffer + +> [!CAUTION] +> While the name may suggest this software has `packet-sniffing` +> capabilities, +> this software only ***ease*** the `sniffing-process` by terminating `TLS` +> in a transparent way. + +## How to use the software \ No newline at end of file diff --git a/compose.yaml b/compose.yaml index 18d0f07..8a4a991 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,10 +1,10 @@ services: vulnbox: build: - context: ./vulnbox + context: . dockerfile: DOCKERFILE volumes: - - ./vulnbox/nginx:/etc/nginx/ + - ./nginx:/etc/nginx/ - ./private/:/services-keys network_mode: host entrypoint: entry.sh \ No newline at end of file diff --git a/vulnbox/helper-scripts/entry.sh b/helper-scripts/entry.sh similarity index 100% rename from vulnbox/helper-scripts/entry.sh rename to helper-scripts/entry.sh diff --git a/services/.gitkeep b/nginx/grpc/.gitkeep similarity index 100% rename from services/.gitkeep rename to nginx/grpc/.gitkeep diff --git a/vulnbox/nginx/grpc/example.conf b/nginx/grpc/conf.example similarity index 100% rename from vulnbox/nginx/grpc/example.conf rename to nginx/grpc/conf.example diff --git a/vulnbox/nginx/grpc/.gitkeep b/nginx/http/.gitkeep similarity index 100% rename from vulnbox/nginx/grpc/.gitkeep rename to nginx/http/.gitkeep diff --git a/vulnbox/nginx/http/example.conf b/nginx/http/conf.example similarity index 100% rename from vulnbox/nginx/http/example.conf rename to nginx/http/conf.example diff --git a/vulnbox/nginx/nginx.conf b/nginx/nginx.conf similarity index 100% rename from vulnbox/nginx/nginx.conf rename to nginx/nginx.conf diff --git a/vulnbox/nginx/http/.gitkeep b/nginx/quic/.gitkeep similarity index 100% rename from vulnbox/nginx/http/.gitkeep rename to nginx/quic/.gitkeep diff --git a/vulnbox/nginx/quic/.gitkeep b/nginx/stream/.gitkeep similarity index 100% rename from vulnbox/nginx/quic/.gitkeep rename to nginx/stream/.gitkeep diff --git a/vulnbox/nginx/stream/.gitkeep b/vulnbox/nginx/stream/.gitkeep deleted file mode 100644 index e69de29..0000000