From 900a4d8c752cc5934412fd9b8078f87b295388b9 Mon Sep 17 00:00:00 2001 From: djformby Date: Mon, 16 Mar 2026 15:24:48 -0400 Subject: [PATCH 1/3] make networking more flexible --- docker-compose.yml | 2 +- simulation/web_visualization/index.html | 83 ++++++++++++++++--------- 2 files changed, 55 insertions(+), 30 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 07d3a17..b12fd05 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: networks: a-grfics-admin: # gets random bridge IP (e.g., 172.18.x.x) b-ics-net: - ipv4_address: 192.168.95.10 + ipv4_address: 192.168.95.45 # Optional if you want to override default CMD # command: sh -c "./simulation/simulation & cd modbus && ./run_all.sh" diff --git a/simulation/web_visualization/index.html b/simulation/web_visualization/index.html index 32b7eb0..24824be 100644 --- a/simulation/web_visualization/index.html +++ b/simulation/web_visualization/index.html @@ -311,12 +311,42 @@ \ No newline at end of file From 5726a7f6acc45ff2126a3601fe7b200ee43b73b6 Mon Sep 17 00:00:00 2001 From: djformby Date: Tue, 17 Mar 2026 15:47:45 -0400 Subject: [PATCH 2/3] fix attacker port number --- simulation/web_visualization/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simulation/web_visualization/index.html b/simulation/web_visualization/index.html index 24824be..a0bea18 100644 --- a/simulation/web_visualization/index.html +++ b/simulation/web_visualization/index.html @@ -324,7 +324,7 @@ caldera: "http://127.0.0.1:8888/" }, "192.168.95.45": { - attacker: "http://192.168.90.6:6088/", + attacker: "http://192.168.90.6:6080/", defender: "http://192.168.95.5:6080/", caldera: "http://192.168.90.250:8888/" } @@ -611,4 +611,4 @@

GRFICSv3

- \ No newline at end of file + From 3f1f2251262b640f18e76f21f98577abda9dd1aa Mon Sep 17 00:00:00 2001 From: djformby Date: Mon, 6 Apr 2026 09:13:23 -0400 Subject: [PATCH 3/3] Update password to match sticky note --- workstation/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workstation/Dockerfile b/workstation/Dockerfile index 4ae1d2b..2fe420d 100644 --- a/workstation/Dockerfile +++ b/workstation/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update && \ # Add user RUN useradd -m -s /bin/bash ${USERNAME} && \ - echo "${USERNAME}:plc123" | chpasswd && \ + echo "${USERNAME}:zxcvbnm" | chpasswd && \ usermod -aG sudo ${USERNAME} # Install noVNC + websockify