-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use `s6-overlay` as process supervisor * install `go-exploitdb` instead of using teh official Docker image as it is based on EOL Alpine Linux version (3.15)
- Loading branch information
1 parent
40fb685
commit 61cd613
Showing
23 changed files
with
153 additions
and
99 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,22 +1,96 @@ | ||
# v0.4.5 | ||
FROM vuls/go-exploitdb@sha256:4738ca739083d41b89aab11012e283f89645f5cdbb5c021f2fbb6584bd5fe423 | ||
FROM alpine:3.18 | ||
|
||
# Make directory to store DB if not volume mounted | ||
RUN mkdir /vuls | ||
ARG TARGETPLATFORM | ||
|
||
# Set up a cron job to update the database files every 3 hours | ||
RUN echo "0 */3 * * * /update.sh" >> /var/spool/cron/crontabs/root | ||
RUN apk --no-cache add git ca-certificates | ||
|
||
# Make sure the cron job file has proper permissions | ||
RUN chmod 0600 /var/spool/cron/crontabs/root | ||
ADD --link --chmod=600 crontabs/root /var/spool/cron/crontabs/root | ||
|
||
# Copy updater script and make it executable | ||
COPY update.sh /update.sh | ||
RUN chmod +x /update.sh | ||
RUN <<EOT | ||
set -e | ||
|
||
# Copy entry point script and make it executable | ||
COPY entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
version=0.4.6 | ||
## Install s6-overlay binaries | ||
case "$TARGETPLATFORM" in | ||
"linux/amd64") | ||
url=https://github.com/vulsio/go-exploitdb/releases/download/v${version}/go-exploitdb_${version}_linux_amd64.tar.gz | ||
checksum=b27cd43a1c194bb365c73d6e4bd199911d83aab4bf48a5eca4ecb8838c0daa9c | ||
;; | ||
"linux/arm64") | ||
url=https://github.com/vulsio/go-exploitdb/releases/download/v${version}/go-exploitdb_${version}_linux_arm64.tar.gz | ||
checksum=432a51a12aebcd4350c4d10c1435cb0d7a5720a7a9bb204a109ccd6c10553184 | ||
;; | ||
*) | ||
printf "ERROR: %s" "invalid architecture" | ||
exit 1 | ||
esac | ||
|
||
# Use the entrypoint script to start freshclam, cron, and Nginx | ||
ENTRYPOINT ["/entrypoint.sh"] | ||
archive="$(basename ${url})" | ||
wget -q -O "${archive}" "${url}" | ||
printf "%s %s" "${checksum}" "${archive}" | sha256sum -c - | ||
tar xzvf "${archive}" -C /usr/local/bin 'go-exploitdb' | ||
rm -f "${archive}" | ||
|
||
chown root:root /usr/local/bin/go-exploitdb | ||
chmod +x /usr/local/bin/go-exploitdb | ||
|
||
mkdir -p /etc/go-exploitdb /var/lib/go-exploitdb /var/log/go-exploitdb | ||
EOT | ||
|
||
ADD --link --chmod=644 go-exploitdb/go-exploitdb.yaml /etc/go-exploitdb/go-exploitdb.yaml | ||
ADD --link --chmod=755 go-exploitdb/go-exploitdb-update.sh /usr/local/bin/go-exploitdb-update | ||
|
||
VOLUME ["/etc/go-exploitdb", "/var/lib/go-exploitdb", "/var/log/go-exploitdb"] | ||
|
||
RUN <<EOT | ||
set -e | ||
|
||
version=3.1.6.2 | ||
url= | ||
checksum= | ||
|
||
## Install s6-overlay scripts | ||
url=https://github.com/just-containers/s6-overlay/releases/download/v${version}/s6-overlay-noarch.tar.xz | ||
checksum=05af2536ec4fb23f087a43ce305f8962512890d7c71572ed88852ab91d1434e3 | ||
|
||
archive="$(basename ${url})" | ||
wget -q -O "${archive}" "${url}" | ||
printf "%s %s" "${checksum}" "${archive}" | sha256sum -c - | ||
tar -C / -Jxpf "${archive}" | ||
rm -f "${archive}" | ||
|
||
## Install s6-overlay binaries | ||
case "$TARGETPLATFORM" in | ||
"linux/amd64") | ||
url=https://github.com/just-containers/s6-overlay/releases/download/v${version}/s6-overlay-x86_64.tar.xz | ||
checksum=95081f11c56e5a351e9ccab4e70c2b1c3d7d056d82b72502b942762112c03d1c | ||
;; | ||
"linux/arm64") | ||
url=https://github.com/just-containers/s6-overlay/releases/download/v${version}/s6-overlay-aarch64.tar.xz | ||
checksum=3fc0bae418a0e3811b3deeadfca9cc2f0869fb2f4787ab8a53f6944067d140ee | ||
;; | ||
*) | ||
printf "ERROR: %s" "invalid architecture" | ||
exit 1 | ||
esac | ||
|
||
archive="$(basename ${url})" | ||
wget -q -O "${archive}" "${url}" | ||
printf "%s %s" "${checksum}" "${archive}" | sha256sum -c - | ||
tar -C / -Jxpf "${archive}" | ||
rm -f "${archive}" | ||
EOT | ||
|
||
ADD --link --chmod=755 s6-rc.d/cron /etc/s6-overlay/s6-rc.d/cron | ||
ADD --link --chmod=755 s6-rc.d/go-exploitdb /etc/s6-overlay/s6-rc.d/go-exploitdb | ||
ADD --link --chmod=755 s6-rc.d/go-exploitdb-updater /etc/s6-overlay/s6-rc.d/go-exploitdb-updater | ||
ADD --link --chmod=755 s6-rc.d/user/contents.d/* /etc/s6-overlay/s6-rc.d/user/contents.d/ | ||
|
||
ENV S6_KEEP_ENV 1 | ||
# Stop container if any of the services fail to start at boot. | ||
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS 2 | ||
ENV S6_VERBOSITY 1 | ||
# Stop container if services are not started in 10 mins. | ||
ENV S6_CMD_WAIT_FOR_SERVICES_MAXTIME 600000 | ||
|
||
ENTRYPOINT ["/init"] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
0 */3 * * * go-exploitdb-update |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
info () { | ||
printf "INFO [go-exploitdb-update]: %s\n" "${1}" | ||
} | ||
|
||
error () { | ||
printf "ERROR [go-exploitdb-update]: %s\n" "${1}" | ||
} | ||
|
||
update () { | ||
local config | ||
config=/etc/go-exploitdb/go-exploitdb.yaml | ||
|
||
for db in awesomepoc exploitdb githubrepos inthewild; do | ||
info "updating database: ${db}" | ||
go-exploitdb --config="${config}" fetch "${db}" || error "failed to update database: ${db}" | ||
done | ||
} | ||
|
||
main () { | ||
( | ||
flock -n 200 || error "failed to acquire lock." | ||
update | ||
) 200>/var/lock/go-exploitdb-update.lock | ||
} | ||
|
||
main |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
dbtype: sqlite3 | ||
dbpath: /var/lib/go-exploitdb/go-exploitdb.sqlite3 | ||
log-json: false | ||
debug: false |
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/command/execlineb -S0 | ||
|
||
foreground { | ||
redirfd -w 1 /run/s6-linux-init-container-results/exitcode echo "$1" | ||
} | ||
|
||
/run/s6/basedir/bin/halt |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/command/execlineb -P | ||
|
||
exec crond -f -d 7 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
longrun |
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
oneshot |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/command/execlineb -P | ||
|
||
exec go-exploitdb-update |
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/command/execlineb -S0 | ||
|
||
foreground { | ||
redirfd -w 1 /run/s6-linux-init-container-results/exitcode echo "$1" | ||
} | ||
|
||
/run/s6/basedir/bin/halt |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/command/execlineb -P | ||
|
||
exec go-exploitdb server --bind 0.0.0.0 --config=/etc/go-exploitdb/go-exploitdb.yaml |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
longrun |
Empty file.
Empty file.
Empty file.