Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dockerfiles - All Dockerfiles to reduce vulnerabilities #59

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5c37d4f
fix: dockerfiles/nlp.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
a4d87a5
Merge pull request #1 from beac0n5/snyk-fix-f2affad0851e1e139120b7185…
b34c0n5 May 10, 2024
08007ee
Merge branch 'SpecterOps:main' into main
b34c0n5 May 10, 2024
c7bedaf
fix: dockerfiles/jtr-base.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
fe59fc9
Merge pull request #2 from beac0n5/snyk-fix-4534a544ef03d793fb89fa1e8…
b34c0n5 May 10, 2024
8b90efa
fix: dockerfiles/dotnet.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
71239e9
Merge pull request #3 from beac0n5/snyk-fix-b170de1ef75ed9a58f0fed880…
b34c0n5 May 10, 2024
e2053e4
fix: dockerfiles/nemesis-submit.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
bbebf9a
Merge pull request #4 from beac0n5/snyk-fix-04e3bba765a6a83295b6b6b01…
b34c0n5 May 10, 2024
aeebc26
fix: dockerfiles/dashboard.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
0891384
Merge pull request #5 from beac0n5/snyk-fix-25a3a80070e5020625766693e…
b34c0n5 May 10, 2024
5c75747
fix: dockerfiles/nlp.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
9cd6283
Merge pull request #6 from beac0n5/snyk-fix-657e358072d0b92ea21fd485e…
b34c0n5 May 10, 2024
88bff86
fix: dockerfiles/jtr-base.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
53cc438
Merge pull request #7 from beac0n5/snyk-fix-121abef68c042f32624e57ce3…
b34c0n5 May 10, 2024
0c5fadc
fix: dockerfiles/dotnet.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
7510a3a
Merge pull request #8 from beac0n5/snyk-fix-f256c10af74115c82fc68489e…
b34c0n5 May 10, 2024
4de7c48
fix: dockerfiles/nemesis-submit.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
066f6af
Merge pull request #9 from beac0n5/snyk-fix-49349dff4707073290680c760…
b34c0n5 May 10, 2024
c7964b5
fix: dockerfiles/dashboard.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
c0e4930
Merge pull request #10 from beac0n5/snyk-fix-8db9f9363f93dfbecc309155…
b34c0n5 May 10, 2024
a49ea40
fix: cmd/connectors/sliver-connector/Dockerfile to reduce vulnerabili…
snyk-bot May 10, 2024
b584982
Merge pull request #11 from beac0n5/snyk-fix-daa92f467147d3b8300db0d6…
b34c0n5 May 10, 2024
6a53a20
fix: cmd/connectors/mythic-connector/Dockerfile to reduce vulnerabili…
snyk-bot May 10, 2024
50ed7cc
Merge pull request #12 from beac0n5/snyk-fix-ee4655ddf5420ffde65eebef…
b34c0n5 May 10, 2024
46da9b9
fix: dockerfiles/waiter.Dockerfile to reduce vulnerabilities
snyk-bot May 10, 2024
10a1825
Merge pull request #13 from beac0n5/snyk-fix-cad7ff54ab4a0eee16315f28…
b34c0n5 May 10, 2024
fff0ee8
Merge branch 'SpecterOps:main' into main
b34c0n5 May 31, 2024
75981e7
Merge branch 'SpecterOps:main' into main
b34c0n5 Jun 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/connectors/mythic-connector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.5-alpine3.15
FROM python:3.13.0b1-slim

COPY requirements.txt .
RUN pip install --upgrade pip \
Expand Down
2 changes: 1 addition & 1 deletion cmd/connectors/sliver-connector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.5-alpine3.15
FROM python:3.13.0b1-slim

COPY requirements.txt .
RUN pip install --upgrade pip \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/dashboard.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################
# Common python dependencies layer
####################################
FROM python:3.11.2-bullseye AS debcommon
FROM python:3.13.0b1-slim AS debcommon
WORKDIR /app/cmd/dashboard

ENV PYTHONUNBUFFERED=true
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/dotnet.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
########################
# Common python dependencies layer
########################
FROM python:3.11.2-bullseye AS netbuild
FROM python:3.13.0b1-slim AS netbuild
WORKDIR /app/cmd/dotnet

ENV PYTHONUNBUFFERED=true
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/jtr-base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# JTR base image used in enrichment and passwordcracker
# Published to specterops/nemesis-jtr-base
##########################################################
FROM python:3.11.2-bullseye as dependencies
FROM python:3.13.0b1-slim as dependencies
ENV PYTHONUNBUFFERED=true

# install our necessary dependencies
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nemesis-submit.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################
# Common python dependencies layer
####################################
FROM python:3.11.2-bullseye AS debcommon
FROM python:3.13.0b1-slim AS debcommon
WORKDIR /opt/Nemesis/

ENV PYTHONUNBUFFERED=true
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nlp.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################
# Common python dependencies layer
####################################
FROM python:3.11.2-bullseye AS debcommon
FROM python:3.13.0b1-slim AS debcommon
WORKDIR /app/cmd/nlp

ENV PYTHONUNBUFFERED=true
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/waiter.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM debian:11-slim
FROM debian:bookworm-20240423-slim

RUN apt-get update && apt-get install -y jq curl postgresql-client