├── .gitignore ├── README.md ├── honssh.cfg ├── honssh.tac ├── honssh ├── __init__.py ├── client.py ├── extras.py ├── honsshServer.py ├── networking.py ├── output.py ├── protocols │ ├── __init__.py │ ├── baseProtocol.py │ ├── execTerm.py │ ├── sftp.py │ ├── ssh.py │ └── term.py ├── server.py └── txtlog.py ├── honsshctrl.sh ├── hpfeeds ├── LICENSE ├── __init__.py └── hpfeeds.py ├── kippo ├── __init__.py ├── core │ ├── __init__.py │ ├── config.py │ ├── honeydocker.py │ ├── interact.py │ └── ttylog.py └── dblog │ ├── __init__.py │ └── mysql.py ├── requirements.txt ├── users.cfg └── utils ├── honssh.sql └── playlog.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | id_* 3 | *.pyc 4 | logs/ 5 | sessions/ 6 | docker.id 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/README.md -------------------------------------------------------------------------------- /honssh.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh.cfg -------------------------------------------------------------------------------- /honssh.tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh.tac -------------------------------------------------------------------------------- /honssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honssh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/client.py -------------------------------------------------------------------------------- /honssh/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/extras.py -------------------------------------------------------------------------------- /honssh/honsshServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/honsshServer.py -------------------------------------------------------------------------------- /honssh/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/networking.py -------------------------------------------------------------------------------- /honssh/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/output.py -------------------------------------------------------------------------------- /honssh/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honssh/protocols/baseProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/protocols/baseProtocol.py -------------------------------------------------------------------------------- /honssh/protocols/execTerm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/protocols/execTerm.py -------------------------------------------------------------------------------- /honssh/protocols/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/protocols/sftp.py -------------------------------------------------------------------------------- /honssh/protocols/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/protocols/ssh.py -------------------------------------------------------------------------------- /honssh/protocols/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/protocols/term.py -------------------------------------------------------------------------------- /honssh/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/server.py -------------------------------------------------------------------------------- /honssh/txtlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honssh/txtlog.py -------------------------------------------------------------------------------- /honsshctrl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/honsshctrl.sh -------------------------------------------------------------------------------- /hpfeeds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/hpfeeds/LICENSE -------------------------------------------------------------------------------- /hpfeeds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpfeeds/hpfeeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/hpfeeds/hpfeeds.py -------------------------------------------------------------------------------- /kippo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kippo/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kippo/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/kippo/core/config.py -------------------------------------------------------------------------------- /kippo/core/honeydocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/kippo/core/honeydocker.py -------------------------------------------------------------------------------- /kippo/core/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/kippo/core/interact.py -------------------------------------------------------------------------------- /kippo/core/ttylog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/kippo/core/ttylog.py -------------------------------------------------------------------------------- /kippo/dblog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kippo/dblog/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/kippo/dblog/mysql.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PAM 2 | Pillow 3 | Twisted 4 | pycrypto 5 | pyasn1 6 | mysql 7 | docker-py 8 | -------------------------------------------------------------------------------- /users.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/users.cfg -------------------------------------------------------------------------------- /utils/honssh.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/utils/honssh.sql -------------------------------------------------------------------------------- /utils/playlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabed/dockpot/HEAD/utils/playlog.py --------------------------------------------------------------------------------