mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 11:48:52 +00:00
66 lines
1.7 KiB
Text
66 lines
1.7 KiB
Text
![]() |
FROM alpine:3.14
|
||
|
#
|
||
|
# Include dist
|
||
|
ADD dist/ /root/dist/
|
||
|
#
|
||
|
# Install packages
|
||
|
RUN apk -U add \
|
||
|
build-base \
|
||
|
freetds \
|
||
|
freetds-dev \
|
||
|
gcc \
|
||
|
git \
|
||
|
hiredis \
|
||
|
jpeg-dev \
|
||
|
libcap \
|
||
|
libffi-dev \
|
||
|
libpq \
|
||
|
musl-dev \
|
||
|
openssl \
|
||
|
openssl-dev \
|
||
|
postgresql-dev \
|
||
|
py3-pip \
|
||
|
python3 \
|
||
|
python3-dev \
|
||
|
zlib-dev && \
|
||
|
#
|
||
|
# Install honeypots from GitHub and setup
|
||
|
mkdir -p /opt \
|
||
|
/var/log/honeypots && \
|
||
|
cd /opt/ && \
|
||
|
#git clone https://github.com/qeeqbox/honeypots && \
|
||
|
git clone https://github.com/t3chn0m4g3/honeypots && \
|
||
|
cd honeypots && \
|
||
|
#git checkout 7c654a3ef2c564ae6f1247bf302d652037080163 && \
|
||
|
pip3 install --upgrade pip && \
|
||
|
pip3 install hiredis && \
|
||
|
pip3 install . && \
|
||
|
setcap cap_net_bind_service=+ep /usr/bin/python3.9 && \
|
||
|
#
|
||
|
# Setup user, groups and configs
|
||
|
addgroup -g 2000 honeypots && \
|
||
|
adduser -S -H -s /bin/ash -u 2000 -D -g 2000 honeypots && \
|
||
|
chown honeypots:honeypots -R /opt/honeypots && \
|
||
|
chown honeypots:honeypots -R /var/log/honeypots && \
|
||
|
mv /root/dist/config.json /opt/honeypots/ && \
|
||
|
#
|
||
|
# Clean up
|
||
|
apk del --purge build-base \
|
||
|
freetds-dev \
|
||
|
git \
|
||
|
jpeg-dev \
|
||
|
libffi-dev \
|
||
|
openssl-dev \
|
||
|
postgresql-dev \
|
||
|
python3-dev \
|
||
|
zlib-dev && \
|
||
|
rm -rf /root/* && \
|
||
|
rm -rf /var/cache/apk/*
|
||
|
#
|
||
|
# Start honeypots
|
||
|
STOPSIGNAL SIGINT
|
||
|
USER honeypots:honeypots
|
||
|
WORKDIR /opt/honeypots/
|
||
|
CMD python3 -m honeypots --setup all --config config.json
|
||
|
#CMD python3 -m honeypots --setup telnet --config config.json
|