mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
Updated Home (markdown)
parent
8125240937
commit
3cd025bdc0
2 changed files with 45 additions and 1 deletions
45
FAQ-17.10.md
Normal file
45
FAQ-17.10.md
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Reconfigure ews.cfg
|
||||||
|
|
||||||
|
### 1. Extract `ews.cfg` from running container:
|
||||||
|
```
|
||||||
|
docker exec -it ewsposter ash
|
||||||
|
cd /opt/ewsposter/
|
||||||
|
cp ews.cfg /data/ews/conf/
|
||||||
|
exit
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Stop T-Pot service
|
||||||
|
```
|
||||||
|
systemctl stop tpot
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Adjust `tpot.yml`:
|
||||||
|
```
|
||||||
|
vi /opt/tpot/etc/tpot.yml
|
||||||
|
|
||||||
|
[...]
|
||||||
|
# Ewsposter service
|
||||||
|
ewsposter:
|
||||||
|
container_name: ewsposter
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- ewsposter_local
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
image: "dtagdevsec/ewsposter:1710"
|
||||||
|
volumes:
|
||||||
|
- /data:/data
|
||||||
|
- /data/ews/conf/ews.ip:/opt/ewsposter/ews.ip
|
||||||
|
- /data/ews/conf/ews.cfg:/opt/ewsposter/ews.cfg
|
||||||
|
[...]
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Modify `ews.cfg` according to your own taste or as instructed:
|
||||||
|
```
|
||||||
|
vi /data/ews/conf/ews.cfg
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. Start T-Pot service
|
||||||
|
```
|
||||||
|
systemctl start tpot
|
||||||
|
```
|
1
Home.md
1
Home.md
|
@ -1 +0,0 @@
|
||||||
Welcome to the tpotce wiki!
|
|
Loading…
Reference in a new issue