mongopot 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mongopot-2.0.0/CHANGELOG.md +64 -0
- mongopot-2.0.0/LICENSE +674 -0
- mongopot-2.0.0/MANIFEST.in +8 -0
- mongopot-2.0.0/PKG-INFO +128 -0
- mongopot-2.0.0/README.md +22 -0
- mongopot-2.0.0/core/__init__.py +0 -0
- mongopot-2.0.0/core/config.py +50 -0
- mongopot-2.0.0/core/logfile.py +74 -0
- mongopot-2.0.0/core/output.py +39 -0
- mongopot-2.0.0/core/paths.py +54 -0
- mongopot-2.0.0/core/protocol.py +550 -0
- mongopot-2.0.0/core/tools.py +171 -0
- mongopot-2.0.0/honeypot.py +119 -0
- mongopot-2.0.0/mongopot/__init__.py +24 -0
- mongopot-2.0.0/mongopot/cli.py +511 -0
- mongopot-2.0.0/mongopot/data/Dockerfile +56 -0
- mongopot-2.0.0/mongopot/data/docs/INSTALL.md +389 -0
- mongopot-2.0.0/mongopot/data/docs/INSTALLWIN.md +400 -0
- mongopot-2.0.0/mongopot/data/docs/TODO.md +8 -0
- mongopot-2.0.0/mongopot/data/docs/datadog/README.md +32 -0
- mongopot-2.0.0/mongopot/data/docs/discord/README.md +58 -0
- mongopot-2.0.0/mongopot/data/docs/geoipupdtask.ps1 +270 -0
- mongopot-2.0.0/mongopot/data/docs/mysql/README.md +175 -0
- mongopot-2.0.0/mongopot/data/docs/mysql/READMEWIN.md +156 -0
- mongopot-2.0.0/mongopot/data/docs/mysql/mysql.sql +87 -0
- mongopot-2.0.0/mongopot/data/docs/postgres/README.md +183 -0
- mongopot-2.0.0/mongopot/data/docs/postgres/READMEWIN.md +185 -0
- mongopot-2.0.0/mongopot/data/docs/postgres/postgres.sql +74 -0
- mongopot-2.0.0/mongopot/data/docs/slack/README.md +68 -0
- mongopot-2.0.0/mongopot/data/docs/sqlite3/README.md +130 -0
- mongopot-2.0.0/mongopot/data/docs/sqlite3/READMEWIN.md +122 -0
- mongopot-2.0.0/mongopot/data/docs/sqlite3/sqlite3.sql +70 -0
- mongopot-2.0.0/mongopot/data/docs/telegram/README.md +103 -0
- mongopot-2.0.0/mongopot/data/etc/honeypot.cfg +427 -0
- mongopot-2.0.0/mongopot/data/etc/honeypot.cfg.base +421 -0
- mongopot-2.0.0/mongopot/data/responses/buildInfo.json +38 -0
- mongopot-2.0.0/mongopot/data/responses/connectionStatus.json +7 -0
- mongopot-2.0.0/mongopot/data/responses/listCommands.json +2359 -0
- mongopot-2.0.0/mongopot/data/test/.gitignore +3 -0
- mongopot-2.0.0/mongopot/data/test/hpfeeds/broker.bat +1 -0
- mongopot-2.0.0/mongopot/data/test/hpfeeds/docker-compose.yml +13 -0
- mongopot-2.0.0/mongopot/data/test/hpfeeds/subscribe.bat +1 -0
- mongopot-2.0.0/mongopot/data/test/kafka/ctest.py +27 -0
- mongopot-2.0.0/mongopot/data/test/kafka/ctest2.py +37 -0
- mongopot-2.0.0/mongopot/data/test/kafka/ptest.py +42 -0
- mongopot-2.0.0/mongopot/data/test/kafka/ptest2.py +47 -0
- mongopot-2.0.0/mongopot/data/test/kafka/ptest3.py +54 -0
- mongopot-2.0.0/mongopot/data/test/mongobleed.py +129 -0
- mongopot-2.0.0/mongopot/data/test/output_plugins/dshield.py +158 -0
- mongopot-2.0.0/mongopot/data/test/output_plugins/graylog.py +52 -0
- mongopot-2.0.0/mongopot/data/test/output_plugins/oraclecloud.py +110 -0
- mongopot-2.0.0/mongopot/data/test/output_plugins/splunk.py +107 -0
- mongopot-2.0.0/mongopot/data/test/redis/redis.bat +2 -0
- mongopot-2.0.0/mongopot/data/test/test.py +52 -0
- mongopot-2.0.0/mongopot/honeypot.py +119 -0
- mongopot-2.0.0/mongopot.egg-info/PKG-INFO +128 -0
- mongopot-2.0.0/mongopot.egg-info/SOURCES.txt +85 -0
- mongopot-2.0.0/mongopot.egg-info/dependency_links.txt +1 -0
- mongopot-2.0.0/mongopot.egg-info/entry_points.txt +2 -0
- mongopot-2.0.0/mongopot.egg-info/requires.txt +84 -0
- mongopot-2.0.0/mongopot.egg-info/top_level.txt +3 -0
- mongopot-2.0.0/output_plugins/README.md +21 -0
- mongopot-2.0.0/output_plugins/__init__.py +0 -0
- mongopot-2.0.0/output_plugins/couch.py +66 -0
- mongopot-2.0.0/output_plugins/datadog.py +77 -0
- mongopot-2.0.0/output_plugins/discord.py +115 -0
- mongopot-2.0.0/output_plugins/elastic.py +109 -0
- mongopot-2.0.0/output_plugins/hpfeed.py +40 -0
- mongopot-2.0.0/output_plugins/influx2.py +62 -0
- mongopot-2.0.0/output_plugins/jsonlog.py +35 -0
- mongopot-2.0.0/output_plugins/kafka.py +54 -0
- mongopot-2.0.0/output_plugins/localsyslog.py +68 -0
- mongopot-2.0.0/output_plugins/mongodb.py +81 -0
- mongopot-2.0.0/output_plugins/mysql.py +201 -0
- mongopot-2.0.0/output_plugins/nlcvapi.py +112 -0
- mongopot-2.0.0/output_plugins/postgres.py +135 -0
- mongopot-2.0.0/output_plugins/redisdb.py +41 -0
- mongopot-2.0.0/output_plugins/rethinkdblog.py +38 -0
- mongopot-2.0.0/output_plugins/slack.py +59 -0
- mongopot-2.0.0/output_plugins/socketlog.py +37 -0
- mongopot-2.0.0/output_plugins/sqlite.py +138 -0
- mongopot-2.0.0/output_plugins/telegram.py +117 -0
- mongopot-2.0.0/output_plugins/textlog.py +44 -0
- mongopot-2.0.0/output_plugins/xmpp.py +47 -0
- mongopot-2.0.0/setup.cfg +7 -0
- mongopot-2.0.0/setup.py +265 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [2.0.0]
|
|
9
|
+
|
|
10
|
+
### Added in version 2.0.0
|
|
11
|
+
|
|
12
|
+
* Made the project installable from PyPi.
|
|
13
|
+
* Sanity checks for the `blacklist` key in the config file.
|
|
14
|
+
* Commands for starting and stopping the honeypot.
|
|
15
|
+
* Added documentation for installing the honeypot on Windows.
|
|
16
|
+
* The program version now exists in a single place.
|
|
17
|
+
|
|
18
|
+
### Changed in version 2.0.0
|
|
19
|
+
|
|
20
|
+
* Bumped the version number.
|
|
21
|
+
* Fixed the default port in the documentation and the config file.
|
|
22
|
+
* Restructured the MySQL, PostgreSQL, and SQLite database schemas. Note that
|
|
23
|
+
this makes these databases incompatible with version 1.0.1. If you have any
|
|
24
|
+
such databases left over from that version, discard them and start anew.
|
|
25
|
+
* Improved the Python 2.x compatibility of the MySQL output plugin.
|
|
26
|
+
* Switched to a hardened Docker image for Python and made many improvements
|
|
27
|
+
to the `Dockerfile`.
|
|
28
|
+
* The depenency installation now allows you to install only the dependencies for
|
|
29
|
+
the modules that you actually intend to use, instead of all of them; see the
|
|
30
|
+
documentation.
|
|
31
|
+
|
|
32
|
+
## [1.0.0]
|
|
33
|
+
|
|
34
|
+
### Added in version 1.0.0
|
|
35
|
+
|
|
36
|
+
* Initial release
|
|
37
|
+
* Config file support
|
|
38
|
+
* Log rotation
|
|
39
|
+
* Support for the `report_public_ip` config file option
|
|
40
|
+
* A script for starting, stopping, and restarting the honeypot
|
|
41
|
+
* Documentation
|
|
42
|
+
* Output plugin support
|
|
43
|
+
* Output plugins for
|
|
44
|
+
* CouchDB
|
|
45
|
+
* Datadog
|
|
46
|
+
* Discord
|
|
47
|
+
* Elasticsearch
|
|
48
|
+
* HPFeeds
|
|
49
|
+
* InfluxDB 2.0
|
|
50
|
+
* JSON
|
|
51
|
+
* Kafka
|
|
52
|
+
* MongoDB
|
|
53
|
+
* MySQL
|
|
54
|
+
* NLCV API
|
|
55
|
+
* PostgeSQL
|
|
56
|
+
* Redis
|
|
57
|
+
* RethinkDB
|
|
58
|
+
* Slack
|
|
59
|
+
* Socket
|
|
60
|
+
* SQLite3
|
|
61
|
+
* Syslog
|
|
62
|
+
* Telegram
|
|
63
|
+
* text
|
|
64
|
+
* XMPP
|