├── .gitignore ├── LICENSE.txt ├── README.md ├── config-test.json ├── config.json.default ├── docs ├── Makefile └── source │ ├── conf.py │ ├── honeyhttpd.lib.rst │ ├── honeyhttpd.loggers.rst │ ├── honeyhttpd.rst │ ├── index.rst │ └── modules.rst ├── honeyhttpd.png ├── honeyhttpd ├── __init__.py ├── lib │ ├── __init__.py │ ├── encode.py │ ├── module_util.py │ └── server.py ├── loggers │ ├── ElasticSearchLogger.py │ ├── FileLogger.py │ ├── S3Logger.py │ ├── StdoutLogger.py │ └── __init__.py └── start.py ├── logs └── .gitkeep ├── requirements.txt ├── servers ├── ApachePasswordServer.py ├── ApacheServer.py ├── TestServer.py ├── Tomcat7Server.py ├── UploadServer.py └── __init__.py ├── start.py └── util └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/README.md -------------------------------------------------------------------------------- /config-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/config-test.json -------------------------------------------------------------------------------- /config.json.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/config.json.default -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/honeyhttpd.lib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/honeyhttpd.lib.rst -------------------------------------------------------------------------------- /docs/source/honeyhttpd.loggers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/honeyhttpd.loggers.rst -------------------------------------------------------------------------------- /docs/source/honeyhttpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/honeyhttpd.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /honeyhttpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd.png -------------------------------------------------------------------------------- /honeyhttpd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeyhttpd/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/lib/__init__.py -------------------------------------------------------------------------------- /honeyhttpd/lib/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/lib/encode.py -------------------------------------------------------------------------------- /honeyhttpd/lib/module_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/lib/module_util.py -------------------------------------------------------------------------------- /honeyhttpd/lib/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/lib/server.py -------------------------------------------------------------------------------- /honeyhttpd/loggers/ElasticSearchLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/loggers/ElasticSearchLogger.py -------------------------------------------------------------------------------- /honeyhttpd/loggers/FileLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/loggers/FileLogger.py -------------------------------------------------------------------------------- /honeyhttpd/loggers/S3Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/loggers/S3Logger.py -------------------------------------------------------------------------------- /honeyhttpd/loggers/StdoutLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/loggers/StdoutLogger.py -------------------------------------------------------------------------------- /honeyhttpd/loggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeyhttpd/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/honeyhttpd/start.py -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | termcolor -------------------------------------------------------------------------------- /servers/ApachePasswordServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/servers/ApachePasswordServer.py -------------------------------------------------------------------------------- /servers/ApacheServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/servers/ApacheServer.py -------------------------------------------------------------------------------- /servers/TestServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/servers/TestServer.py -------------------------------------------------------------------------------- /servers/Tomcat7Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/servers/Tomcat7Server.py -------------------------------------------------------------------------------- /servers/UploadServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/servers/UploadServer.py -------------------------------------------------------------------------------- /servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocajspear1/honeyhttpd/HEAD/start.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------