-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* | ||
|
||
|