mirror of https://github.com/cowrie/cowrie.git
update default umask
This commit is contained in:
parent
ade7d69a5b
commit
249d0cae78
|
@ -1,3 +1,4 @@
|
|||
* 2017-12-13 Default umask for logs is now 0007. This means group members can access.
|
||||
* 2017-10-24 Can store uploaded and downloaded artifacts to S3
|
||||
* 2017-09-23 First proxy implementation for exec commands only
|
||||
* 2017-07-03 Cuckoo v2 integration
|
||||
|
|
|
@ -60,7 +60,7 @@ cowrie_status() {
|
|||
cowrie_start() {
|
||||
# Start Cowrie
|
||||
COWRIEARGS="$*"
|
||||
TWISTEDARGS="${DAEMONIZE} ${XARGS} --umask 0077 --pidfile ${PIDFILE}"
|
||||
TWISTEDARGS="${DAEMONIZE} ${XARGS} --umask 0007 --pidfile ${PIDFILE}"
|
||||
|
||||
# For Docker log to stdout, for non-Docker log to file
|
||||
if [ "$DOCKER" = "yes" ]; then
|
||||
|
|
Loading…
Reference in New Issue