From 060b2f58be5598dc76d0427a411bee0abec35772 Mon Sep 17 00:00:00 2001 From: Chris deWolf Date: Wed, 10 May 2023 19:58:20 -0600 Subject: [PATCH 1/2] remove duplicate arg check in exploit-deface.sh --- exploit-deface.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/exploit-deface.sh b/exploit-deface.sh index f208802..3e61df1 100755 --- a/exploit-deface.sh +++ b/exploit-deface.sh @@ -7,13 +7,6 @@ then return -1 fi -if [ -z "$1" ] -then - echo 'Please inform the IP and PORT of the target' - echo 'Example: ./exploit-deface.sh ' - return -1 -fi - ip=$1 port=$2 From 8427ab1ed96c261eb6dbc4946e0686ad88d6885a Mon Sep 17 00:00:00 2001 From: Chris deWolf Date: Wed, 10 May 2023 20:10:10 -0600 Subject: [PATCH 2/2] update the docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 362b2b7..5e27a81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:wheezy +FROM debian/eol:wheezy LABEL maintainer "opsxcq@strm.sh"