mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-01 04:22:11 +00:00
add hpfeeds broker for testing
This commit is contained in:
parent
62b02a7500
commit
fbc11fa12c
3 changed files with 61 additions and 0 deletions
41
docker/hpfeeds/Dockerfile
Normal file
41
docker/hpfeeds/Dockerfile
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
### This is only for testing purposes, do NOT use for production
|
||||||
|
FROM alpine
|
||||||
|
|
||||||
|
ADD dist/ /root/dist/
|
||||||
|
|
||||||
|
# Install packages
|
||||||
|
RUN apk -U --no-cache add \
|
||||||
|
build-base \
|
||||||
|
coreutils \
|
||||||
|
git \
|
||||||
|
libffi \
|
||||||
|
libffi-dev \
|
||||||
|
py-gevent \
|
||||||
|
py-pip \
|
||||||
|
python \
|
||||||
|
python-dev \
|
||||||
|
sqlite && \
|
||||||
|
|
||||||
|
# Install php sandbox from git
|
||||||
|
git clone --depth=1 https://github.com/rep/hpfeeds /opt/hpfeeds && \
|
||||||
|
cd /opt/hpfeeds/broker && \
|
||||||
|
sed -i -e '87d;88d' database.py && \
|
||||||
|
cp /root/dist/adduser.sql . && \
|
||||||
|
cd /opt/hpfeeds/broker && timeout 5 python broker.py || : && \
|
||||||
|
sqlite3 db.sqlite3 < adduser.sql && \
|
||||||
|
|
||||||
|
#python setup.py build && \
|
||||||
|
#python setup.py install && \
|
||||||
|
|
||||||
|
# Clean up
|
||||||
|
apk del --purge autoconf \
|
||||||
|
build-base \
|
||||||
|
coreutils \
|
||||||
|
libffi-dev \
|
||||||
|
python-dev && \
|
||||||
|
rm -rf /root/* && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
# Set workdir and start glastopf
|
||||||
|
WORKDIR /opt/hpfeeds/broker
|
||||||
|
CMD python broker.py
|
1
docker/hpfeeds/dist/adduser.sql
vendored
Normal file
1
docker/hpfeeds/dist/adduser.sql
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
insert into authkeys (owner, ident, secret, pubchans, subchans) values ('testID', 'testID', 'testSecret', '["ciscoasa", "rdpy-channel", "mailoney.mail","mailoney.commands",mailoney.shellcode"]', '["ciscoasa", "rdpy-channel", "mailoney.mail","mailoney.commands",mailoney.shellcode"]');
|
19
docker/hpfeeds/docker-compose.yml
Normal file
19
docker/hpfeeds/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
### This is only for testing purposes, do NOT use for production
|
||||||
|
version: '2.3'
|
||||||
|
|
||||||
|
networks:
|
||||||
|
hpfeeds_local:
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
# hpfeeds service
|
||||||
|
hpfeeds:
|
||||||
|
build: .
|
||||||
|
container_name: hpfeeds
|
||||||
|
restart: always
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
networks:
|
||||||
|
- hpfeeds_local
|
||||||
|
ports:
|
||||||
|
- "20000:20000"
|
||||||
|
image: "dtagdevsec/hpfeeds:latest"
|
Loading…
Reference in a new issue