-
Notifications
You must be signed in to change notification settings - Fork 71
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
MaKyOtOx
committed
Jul 12, 2021
1 parent
bfa095e
commit 44939a5
Showing
21 changed files
with
53 additions
and
44 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
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
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 +1 @@ | ||
1.4.29 // PatrowlEngines | ||
1.4.30 // PatrowlEngines |
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:16.04 | ||
FROM ubuntu:20.04 | ||
MAINTAINER Patrowl.io "[email protected]" | ||
LABEL Name="Arachni\ \(Patrowl engine\)" Version="1.0.0" | ||
|
||
|
@@ -25,8 +25,9 @@ COPY README.md . | |
|
||
WORKDIR /opt/patrowl-engines/arachni/libs | ||
|
||
RUN apt-get -qq update && apt-get install -yq wget ruby bash python3 python3-dev curl bsdtar make gcc && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
RUN curl -fsSL -o- https://bootstrap.pypa.io/pip/3.5/get-pip.py | python3.5 | ||
# RUN apt-get -qq update && apt-get install -yq wget ruby bash python3 python3-dev curl bsdtar make gcc && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
RUN apt-get -qq update && apt-get install -yq wget ruby bash python3 python3-dev curl make gcc && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
RUN curl -fsSL -o- https://bootstrap.pypa.io/pip/get-pip.py | python3 | ||
RUN ln -sf $(which bsdtar) $(which tar) | ||
RUN wget $DL_ARACHNI_LINK -nv | ||
RUN tar xzf $TGZ_ARACHNI && \ | ||
|
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 +1 @@ | ||
1.4.26 | ||
1.4.27 |
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
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
File renamed without changes.
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,6 +1,6 @@ | ||
FROM alpine:latest | ||
MAINTAINER Patrowl.io "[email protected]" | ||
LABEL Name="droopescan\ \(Patrowl engine\)" Version="1.3.0" | ||
LABEL Name="droopescan\ \(Patrowl engine\)" Version="1.4.27" | ||
|
||
# Set the working directory | ||
RUN mkdir -p /opt/patrowl-engines/droopescan | ||
|
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 +1 @@ | ||
1.4.26 | ||
1.4.27 |
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
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
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
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,13 +1,13 @@ | ||
FROM alpine:latest | ||
MAINTAINER Patrowl.io "[email protected]" | ||
LABEL Name="Patrowl\ Code\ Security\ review\ \(Patrowl engine\)" Version="1.4.26" | ||
LABEL Name="Patrowl\ Code\ Security\ review\ \(Patrowl engine\)" Version="1.4.27" | ||
|
||
# Install dependencies | ||
RUN apk add --update --no-cache \ | ||
wget unzip openjdk8-jre \ | ||
git subversion \ | ||
python3 python3-dev py3-pip \ | ||
nodejs nodejs-npm \ | ||
npm nodejs \ | ||
&& rm -rf /var/cache/apk/* \ | ||
&& rm -rf /tmp/* | ||
|
||
|
@@ -25,18 +25,21 @@ RUN npm install -g retire | |
|
||
# Install OWASP-DC | ||
ENV version_url=https://jeremylong.github.io/DependencyCheck/current.txt | ||
ENV download_url=https://dl.bintray.com/jeremy-long/owasp | ||
# ENV download_url=https://dl.bintray.com/jeremy-long/owasp | ||
ENV download_url=https://github.com/jeremylong/DependencyCheck/releases/download/ | ||
RUN wget -qO- -O /tmp/current.txt ${version_url} && \ | ||
version=$(cat /tmp/current.txt) && \ | ||
file="dependency-check-6.0.3-release.zip" && \ | ||
# version="6.0.3" && \ | ||
# file="dependency-check-6.0.3-release.zip" && \ | ||
# file="dependency-check-${version}-release.zip" && \ | ||
wget "$download_url/$file" && \ | ||
file="dependency-check-${version}-release.zip" && \ | ||
wget "$download_url/v${version}/$file" && \ | ||
unzip ${file} && \ | ||
rm ${file} && \ | ||
mv dependency-check /opt/patrowl-engines/owl_code/libs && \ | ||
cd /opt/patrowl-engines/owl_code/libs && \ | ||
chmod +x dependency-check/bin/dependency-check.sh && \ | ||
dependency-check/bin/dependency-check.sh --updateonly | ||
chmod +x dependency-check/bin/dependency-check.sh | ||
RUN dependency-check/bin/dependency-check.sh --updateonly ; exit 0 | ||
|
||
# Set the working directory to /opt/<engine_name> | ||
WORKDIR /opt/patrowl-engines/owl_code | ||
|
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 +1 @@ | ||
1.4.26 | ||
1.4.27 |
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
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,6 +1,6 @@ | ||
FROM alpine:latest | ||
MAINTAINER Patrowl.io "[email protected]" | ||
LABEL Name="SHHGit\ \(Patrowl engine\)" Version="1.4.27" | ||
LABEL Name="SHHGit\ \(Patrowl engine\)" Version="1.4.28" | ||
|
||
# Create the target repo | ||
RUN mkdir -p /opt/patrowl-engines/shhgit | ||
|
@@ -21,15 +21,14 @@ COPY README.md . | |
RUN mkdir -p results | ||
RUN mkdir -p data | ||
RUN apk add --update --no-cache \ | ||
python3 \ | ||
python3-dev \ | ||
py3-pip \ | ||
python3 python3-dev py3-pip \ | ||
gcc libc-dev libffi-dev make \ | ||
&& rm -rf /var/cache/apk/* | ||
RUN pip3 install --upgrade pip | ||
RUN pip3 install --trusted-host pypi.python.org -r requirements.txt | ||
|
||
# TCP port exposed by the container (NAT) | ||
EXPOSE 5024 | ||
EXPOSE 5025 | ||
|
||
# Run app.py when the container launches | ||
CMD ["gunicorn", "engine-shhgit:app", "-b", "0.0.0.0:5024", "--access-logfile", "-"] | ||
CMD ["gunicorn", "engine-shhgit:app", "-b", "0.0.0.0:5025", "--access-logfile", "-"] |
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
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 +1 @@ | ||
1.4.27 | ||
1.4.28 |
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
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