From 4e59ddfba044ec01f03b65af87d4e435dfad302c Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Mon, 4 Jan 2016 13:40:32 +0000 Subject: [PATCH] more paths for head/tail --- cowrie/commands/fs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cowrie/commands/fs.py b/cowrie/commands/fs.py index 9011c1b..8f1c562 100644 --- a/cowrie/commands/fs.py +++ b/cowrie/commands/fs.py @@ -85,6 +85,7 @@ class command_tail(HoneyPotCommand): def handle_CTRL_D(self): self.exit() commands['/bin/tail'] = command_tail +commands['/usr/bin/tail'] = command_tail @@ -132,6 +133,7 @@ class command_head(HoneyPotCommand): def handle_CTRL_D(self): self.exit() commands['/bin/head'] = command_head +commands['/usr/bin/head'] = command_head