From 1364e435f5918dd224b9117a2d16b401fc28dc84 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 13:06:11 +0300 Subject: [PATCH 1/6] init --- .github/workflows/kali-zenmap-wf.yml | 2 +- dockerfiles/Dockerfile.kali.zenmap | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kali-zenmap-wf.yml b/.github/workflows/kali-zenmap-wf.yml index 7de96a6..71db5b0 100644 --- a/.github/workflows/kali-zenmap-wf.yml +++ b/.github/workflows/kali-zenmap-wf.yml @@ -3,7 +3,7 @@ name: "zenmap with kalilinux CI workflow" on: push: - branches: [ main ] + branches: [ test ] # schedule: # - cron: '0 0 1 * *' ##execution of a task in the first minute of the month diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 41b4acb..81a6c5c 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -7,6 +7,11 @@ RUN set -xe && \ apt-get -qq update && \ apt-get -qqy upgrade +#ghost eye + etherape +#displays network activity in the link layer, IP, and TCP modes RUN set -xe && \ - apt-get install zenmap nmap etherape -y - + apt-get install python3 nmap etherape -y && \ + git clone https://github.com/BullsEye0/ghost_eye.git && \ + cd ghost_eye && \ + pip3 install -r requirements.txt && \ + python3 ghost_eye.py From 34d6eca2c92735809a50610c3ae393490f48e0a6 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 13:09:35 +0300 Subject: [PATCH 2/6] git --- dockerfiles/Dockerfile.kali.zenmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 81a6c5c..60cf877 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -10,7 +10,7 @@ RUN set -xe && \ #ghost eye + etherape #displays network activity in the link layer, IP, and TCP modes RUN set -xe && \ - apt-get install python3 nmap etherape -y && \ + apt-get install git python3 nmap etherape -y && \ git clone https://github.com/BullsEye0/ghost_eye.git && \ cd ghost_eye && \ pip3 install -r requirements.txt && \ From 96037938a5a7249ae513404fe2d14773ad95eed7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 13:15:34 +0300 Subject: [PATCH 3/6] python3-pip --- dockerfiles/Dockerfile.kali.zenmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 60cf877..3c51fef 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -10,7 +10,7 @@ RUN set -xe && \ #ghost eye + etherape #displays network activity in the link layer, IP, and TCP modes RUN set -xe && \ - apt-get install git python3 nmap etherape -y && \ + apt-get install git python3 python3-pip nmap etherape -y && \ git clone https://github.com/BullsEye0/ghost_eye.git && \ cd ghost_eye && \ pip3 install -r requirements.txt && \ From ec75051576cc6baaeb49854c5906463e674987d9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 13:27:04 +0300 Subject: [PATCH 4/6] etherape --- dockerfiles/Dockerfile.kali.zenmap | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 3c51fef..57d7155 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -13,5 +13,6 @@ RUN set -xe && \ apt-get install git python3 python3-pip nmap etherape -y && \ git clone https://github.com/BullsEye0/ghost_eye.git && \ cd ghost_eye && \ - pip3 install -r requirements.txt && \ - python3 ghost_eye.py + pip3 install -r requirements.txt + # FileNotFoundError: [Errno 2] No such file or directory: '/root/.local/share/webtech' + # python3 ghost_eye.py From ef1f0463d737b3dee450ccda1f3877f72ff826fa Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 13:32:04 +0300 Subject: [PATCH 5/6] webtech --- .github/workflows/kali-zenmap-wf.yml | 2 +- dockerfiles/Dockerfile.kali.zenmap | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kali-zenmap-wf.yml b/.github/workflows/kali-zenmap-wf.yml index 71db5b0..192ed90 100644 --- a/.github/workflows/kali-zenmap-wf.yml +++ b/.github/workflows/kali-zenmap-wf.yml @@ -47,4 +47,4 @@ jobs: echo "################## ENTRYPOINT ##################" docker inspect -f '{{.Config.Entrypoint}}' ${name}:${version} echo "################## ENTRYPOINT ##################" - docker run ${name}:${version} -h \ No newline at end of file + # docker run ${name}:${version} -h \ No newline at end of file diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 57d7155..84f3480 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -13,6 +13,7 @@ RUN set -xe && \ apt-get install git python3 python3-pip nmap etherape -y && \ git clone https://github.com/BullsEye0/ghost_eye.git && \ cd ghost_eye && \ - pip3 install -r requirements.txt + pip install webtech && \ + pip3 install -r requirements.txt && \ # FileNotFoundError: [Errno 2] No such file or directory: '/root/.local/share/webtech' - # python3 ghost_eye.py + python3 ghost_eye.py From 26898fe029261fe54d89fecb83c8d2a8e0aa6f54 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 17 May 2022 14:03:02 +0300 Subject: [PATCH 6/6] Errno --- dockerfiles/Dockerfile.kali.zenmap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile.kali.zenmap b/dockerfiles/Dockerfile.kali.zenmap index 84f3480..304848b 100644 --- a/dockerfiles/Dockerfile.kali.zenmap +++ b/dockerfiles/Dockerfile.kali.zenmap @@ -14,6 +14,6 @@ RUN set -xe && \ git clone https://github.com/BullsEye0/ghost_eye.git && \ cd ghost_eye && \ pip install webtech && \ - pip3 install -r requirements.txt && \ + pip3 install -r requirements.txt # FileNotFoundError: [Errno 2] No such file or directory: '/root/.local/share/webtech' - python3 ghost_eye.py + # python3 ghost_eye.py