Add updating instructions

This commit is contained in:
Michel Oosterhof 2017-12-13 09:09:36 +00:00
parent 4f36ec44d0
commit 43eb51beba
1 changed files with 13 additions and 2 deletions

View File

@ -179,9 +179,9 @@ Update the bin/cowrie script, change:
```
DAEMONIZE="-n"
```
## Configure Additional Output Plugins (Optional)
Cowrie automatically outputs event data to text and json log files in ~/cowrie/log. Additional ouput plugins can be
Cowrie automatically outputs event data to text and json log files in ~/cowrie/log. Additional ouput plugins can be
configured to record the data other ways. Supported output plugins include:
* Cuckoo
@ -204,3 +204,14 @@ double check that your PYTHONPATH is set to the source code directory.
To make Cowrie logfiles public readable, change the ```--umask 0077``` option in start.sh into ```--umask 0022```
# Updating Cowrie
Updating is an easy process. First stop your honeypot. Then fetch updates from GitHub, as a next step upgrade your Python dependencies.
```
bin/cowrie stop
git pull
pip install --upgrade -r requirements.txt
bin/cowrie start
```