├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── kippo_extra ├── __init__.py ├── commands │ ├── __init__.py │ ├── env.py │ ├── gcc.py │ ├── iptables.py │ ├── netstat.py │ ├── sleep.py │ ├── uname.py │ └── which.py ├── loader.py ├── patches │ ├── kippo_core_honeypot.patch │ └── kippo_core_protocol.patch └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/README.rst -------------------------------------------------------------------------------- /kippo_extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kippo_extra/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/__init__.py -------------------------------------------------------------------------------- /kippo_extra/commands/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/env.py -------------------------------------------------------------------------------- /kippo_extra/commands/gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/gcc.py -------------------------------------------------------------------------------- /kippo_extra/commands/iptables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/iptables.py -------------------------------------------------------------------------------- /kippo_extra/commands/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/netstat.py -------------------------------------------------------------------------------- /kippo_extra/commands/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/sleep.py -------------------------------------------------------------------------------- /kippo_extra/commands/uname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/uname.py -------------------------------------------------------------------------------- /kippo_extra/commands/which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/commands/which.py -------------------------------------------------------------------------------- /kippo_extra/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/loader.py -------------------------------------------------------------------------------- /kippo_extra/patches/kippo_core_honeypot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/patches/kippo_core_honeypot.patch -------------------------------------------------------------------------------- /kippo_extra/patches/kippo_core_protocol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/patches/kippo_core_protocol.patch -------------------------------------------------------------------------------- /kippo_extra/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/kippo_extra/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basilfx/kippo-extra/HEAD/setup.py --------------------------------------------------------------------------------