Skip to content

Commit 24a02f8

Browse files
authored
Merge pull request #2 from ArchimedeOS-Development/feat/blueteam-container
feat: add blueteam container
2 parents f62fed8 + 55eb43a commit 24a02f8

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

blueteam-container/Dockerfile

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
FROM ghcr.io/archimedeos-development/archimedeos-base:latest
2+
3+
LABEL maintainer="Killian Prin-abeil <killian@archimedeos.org>"
4+
LABEL description="Conteneur BlueTeam basé sur ArchimedeOS"
5+
6+
USER root
7+
8+
RUN userdel -r archimede || true
9+
10+
RUN useradd -m -s /bin/bash archytas && \
11+
echo "archytas ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
12+
13+
RUN pacman -Syu --noconfirm && \
14+
pacman -S --noconfirm \
15+
sleuthkit \
16+
foremost \
17+
testdisk \
18+
binwalk \
19+
exiftool \
20+
volatility \
21+
chkrootkit \
22+
rkhunter \
23+
clamav \
24+
yara \
25+
lynis \
26+
audit \
27+
hashdeep \
28+
gpg \
29+
wireshark-qt \
30+
tcpdump \
31+
tshark \
32+
iftop \
33+
iptraf-ng \
34+
logwatch \
35+
logrotate \
36+
rsyslog \
37+
&& pacman -Scc --noconfirm
38+
39+
USER archytas
40+
WORKDIR /home/archytas
41+
42+
EXPOSE 22
43+
44+
CMD hostname aos && exec /bin/bash

0 commit comments

Comments
 (0)