From 542648962ccef705c189db7ffcc357bd2d3dbdf2 Mon Sep 17 00:00:00 2001 From: dolevf Date: Thu, 8 Oct 2020 00:38:40 -0400 Subject: [PATCH] upgrade nmap to 7.90-1 --- Dockerfile | 4 ++-- install/setup.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7721d7..45bbc32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ RUN yum install epel-release -y && \ yum clean all -RUN wget https://nmap.org/dist/nmap-7.80-1.x86_64.rpm -RUN rpm -ivh nmap-7.80-1.x86_64.rpm +RUN wget https://nmap.org/dist/nmap-7.90-1.x86_64.rpm +RUN rpm -ivh nmap-*.x86_64.rpm RUN mkdir /opt/nerve diff --git a/install/setup.sh b/install/setup.sh index 314e7e1..59449d4 100644 --- a/install/setup.sh +++ b/install/setup.sh @@ -50,7 +50,7 @@ function install_redhat { yum install -y python3-devel && \ yum install -y wget && \ yum clean all - wget https://nmap.org/dist/nmap-7.80-1.x86_64.rpm + wget https://nmap.org/dist/nmap-7.90-1.x86_64.rpm rpm -U nmap-*.rpm rm -rf nmap-*.rpm }