From 257133cbd2632acede35e56c44ae302d9882f29e Mon Sep 17 00:00:00 2001 From: whaffman Date: Fri, 11 Jul 2025 12:36:26 +0200 Subject: [PATCH] Pass network variables to the Python script for ARP spoofing --- inquisitor/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inquisitor/entrypoint.sh b/inquisitor/entrypoint.sh index 088792b..9eb84ab 100644 --- a/inquisitor/entrypoint.sh +++ b/inquisitor/entrypoint.sh @@ -43,6 +43,6 @@ source /opt/venv/bin/activate echo "Starting ARP spoofing attack..." # Run Python with unbuffered output and force line buffering -PYTHONUNBUFFERED=1 python3 -u /app/src/inquisitor.py +PYTHONUNBUFFERED=1 python3 -u /app/src/inquisitor.py $TARGET_IP $TARGET_MAC $GATEWAY_IP $GATEWAY_MAC echo "Python script exited with code: $?" \ No newline at end of file