Skip to content

Commit

Permalink
Lets update some dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
raesene committed Nov 7, 2024
1 parent dab1e34 commit 0ffcd90
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion autochrome/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer "Rory Mccune <[email protected]>"

Expand Down
4 changes: 2 additions & 2 deletions beef/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer "Rory McCune <[email protected]>"

RUN apt update && apt install -y nodejs ruby ruby-dev sqlite3 libsqlite3-dev build-essential libxslt-dev libxml2-dev git && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*

RUN gem install bundler -v '1.17.3'
RUN gem install bundler

RUN git clone --depth=1 https://github.com/beefproject/beef.git && rm -rf /beef/.git/

Expand Down
2 changes: 1 addition & 1 deletion droopescan/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer="[email protected]"

Expand Down
6 changes: 3 additions & 3 deletions metasploit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer="Rory McCune <[email protected]>"

#Localtime hack
COPY localtime /etc/
#COPY localtime /etc/

#Avoid getting prompted during builds
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN apt-get update && apt-get install -y \
ruby-dev && \
rm -rf /var/lib/apt/lists/* && rm -rf /var/cache/apt/*

RUN gem install bundler -v '2.1.4'
RUN gem install bundler

#Install Metasploit
RUN git clone --depth=1 https://github.com/rapid7/metasploit-framework.git && \
Expand Down
8 changes: 4 additions & 4 deletions ncat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer="[email protected]"

RUN apt update && apt install -y build-essential libssh-dev openssl wget

RUN wget https://nmap.org/dist/nmap-7.70.tar.bz2 && tar -xjvf nmap-7.70.tar.bz2
RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2

WORKDIR /nmap-7.70
WORKDIR /nmap-7.95

RUN ./configure && make && make install

FROM ubuntu:18.04
FROM ubuntu:24.04

RUN apt update && apt install -y libssh-dev openssl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions nikto/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer "Rory Mccune <[email protected]>"

RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*

RUN git clone --depth=1 https://github.com/sullo/nikto.git && rm -rf /nikto/.git/

FROM ubuntu:18.04
FROM ubuntu:24.04

RUN apt update && apt install -y libnet-ssleay-perl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*

Expand Down
8 changes: 4 additions & 4 deletions nmap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer="[email protected]"

RUN apt update && apt install -y build-essential libssh-dev openssl wget

RUN wget https://nmap.org/dist/nmap-7.70.tar.bz2 && tar -xjvf nmap-7.70.tar.bz2
RUN wget https://nmap.org/dist/nmap-7.95.tar.bz2 && tar -xjvf nmap-7.95.tar.bz2

WORKDIR /nmap-7.70
WORKDIR /nmap-7.95

RUN ./configure && make && make install

FROM ubuntu:18.04
FROM ubuntu:24.04

RUN apt update && apt install -y libssh-dev openssl && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions testssl.sh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:18.04
FROM ubuntu:24.04

LABEL maintainer="[email protected]"

RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*

RUN git clone --depth=1 https://github.com/drwetter/testssl.sh.git && rm -rf /testssl.sh/.git/

FROM ubuntu:18.04
FROM ubuntu:24.04

RUN apt update && apt install -y dnsutils bsdmainutils && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 0ffcd90

Please sign in to comment.