mirror of
https://github.com/aljazceru/cowrie.git
synced 2025-12-18 14:34:22 +01:00
git-svn-id: https://kippo.googlecode.com/svn/trunk@4 951d7100-d841-11de-b865-b3884708a8e2
23 lines
816 B
Python
23 lines
816 B
Python
from commands import base, ls, wget, tar
|
|
|
|
cmdl = {
|
|
'/bin/echo': base.command_echo,
|
|
'cd': base.command_cd,
|
|
'/bin/cat': base.command_cat,
|
|
'/usr/bin/whoami': base.command_whoami,
|
|
'quit': base.command_quit,
|
|
'/usr/bin/clear': base.command_clear,
|
|
'/bin/rm': base.command_rm,
|
|
'/usr/bin/uptime': base.command_uptime,
|
|
'/usr/bin/w': base.command_w,
|
|
'/usr/bin/who': base.command_w,
|
|
'/usr/bin/vi': base.command_vi,
|
|
'/usr/bin/vim': base.command_vi,
|
|
'/bin/mount': base.command_mount,
|
|
'/bin/pwd': base.command_pwd,
|
|
'/bin/uname': base.command_uname,
|
|
'/bin/ls': ls.command_ls,
|
|
'/usr/bin/wget': wget.command_wget,
|
|
'/bin/tar': tar.command_tar,
|
|
}
|