Michel Oosterhof

Results 134 comments of Michel Oosterhof

There is a command in `bin/createfs` to do this.

Sure, you can do this! Use the `honeyfs` directory to put file contents and use 'bin/fsctl` to add individual files.

This may be a wider issue, where the `cat` command asked to print the contents of a file that only has meta data defined and no contents gives an error:...

The quick workaround is to add and entry in `honeyfs/proc/uptime`

Hi! Please don't post screenshots, but copy and paste the text instead. Recently support for ecdsa keys was added. There should be entries in your `cowrie.cfg.dist` that have default values...

I get the same error when starting the Docker container. Will investigate! Thanks for reporting.

If you are running on Docker, the problem is most likely that your cowrie-etc volume has an old version of the default config file. If you haven't made changes there,...

I think this should work too: ``` ps -o pid | grep "^$PID$" ``` ?

Aha! My `ps -o pid` does not have that space at the start.

`\W+` will match one or more whitespace, and will fail on most normal systems that won't put a space in front of the PID. How about: ``` ps -o pid...