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.
Files changed (86) hide show
  1. mongopot-2.0.0/CHANGELOG.md +64 -0
  2. mongopot-2.0.0/LICENSE +674 -0
  3. mongopot-2.0.0/MANIFEST.in +8 -0
  4. mongopot-2.0.0/PKG-INFO +128 -0
  5. mongopot-2.0.0/README.md +22 -0
  6. mongopot-2.0.0/core/__init__.py +0 -0
  7. mongopot-2.0.0/core/config.py +50 -0
  8. mongopot-2.0.0/core/logfile.py +74 -0
  9. mongopot-2.0.0/core/output.py +39 -0
  10. mongopot-2.0.0/core/paths.py +54 -0
  11. mongopot-2.0.0/core/protocol.py +550 -0
  12. mongopot-2.0.0/core/tools.py +171 -0
  13. mongopot-2.0.0/honeypot.py +119 -0
  14. mongopot-2.0.0/mongopot/__init__.py +24 -0
  15. mongopot-2.0.0/mongopot/cli.py +511 -0
  16. mongopot-2.0.0/mongopot/data/Dockerfile +56 -0
  17. mongopot-2.0.0/mongopot/data/docs/INSTALL.md +389 -0
  18. mongopot-2.0.0/mongopot/data/docs/INSTALLWIN.md +400 -0
  19. mongopot-2.0.0/mongopot/data/docs/TODO.md +8 -0
  20. mongopot-2.0.0/mongopot/data/docs/datadog/README.md +32 -0
  21. mongopot-2.0.0/mongopot/data/docs/discord/README.md +58 -0
  22. mongopot-2.0.0/mongopot/data/docs/geoipupdtask.ps1 +270 -0
  23. mongopot-2.0.0/mongopot/data/docs/mysql/README.md +175 -0
  24. mongopot-2.0.0/mongopot/data/docs/mysql/READMEWIN.md +156 -0
  25. mongopot-2.0.0/mongopot/data/docs/mysql/mysql.sql +87 -0
  26. mongopot-2.0.0/mongopot/data/docs/postgres/README.md +183 -0
  27. mongopot-2.0.0/mongopot/data/docs/postgres/READMEWIN.md +185 -0
  28. mongopot-2.0.0/mongopot/data/docs/postgres/postgres.sql +74 -0
  29. mongopot-2.0.0/mongopot/data/docs/slack/README.md +68 -0
  30. mongopot-2.0.0/mongopot/data/docs/sqlite3/README.md +130 -0
  31. mongopot-2.0.0/mongopot/data/docs/sqlite3/READMEWIN.md +122 -0
  32. mongopot-2.0.0/mongopot/data/docs/sqlite3/sqlite3.sql +70 -0
  33. mongopot-2.0.0/mongopot/data/docs/telegram/README.md +103 -0
  34. mongopot-2.0.0/mongopot/data/etc/honeypot.cfg +427 -0
  35. mongopot-2.0.0/mongopot/data/etc/honeypot.cfg.base +421 -0
  36. mongopot-2.0.0/mongopot/data/responses/buildInfo.json +38 -0
  37. mongopot-2.0.0/mongopot/data/responses/connectionStatus.json +7 -0
  38. mongopot-2.0.0/mongopot/data/responses/listCommands.json +2359 -0
  39. mongopot-2.0.0/mongopot/data/test/.gitignore +3 -0
  40. mongopot-2.0.0/mongopot/data/test/hpfeeds/broker.bat +1 -0
  41. mongopot-2.0.0/mongopot/data/test/hpfeeds/docker-compose.yml +13 -0
  42. mongopot-2.0.0/mongopot/data/test/hpfeeds/subscribe.bat +1 -0
  43. mongopot-2.0.0/mongopot/data/test/kafka/ctest.py +27 -0
  44. mongopot-2.0.0/mongopot/data/test/kafka/ctest2.py +37 -0
  45. mongopot-2.0.0/mongopot/data/test/kafka/ptest.py +42 -0
  46. mongopot-2.0.0/mongopot/data/test/kafka/ptest2.py +47 -0
  47. mongopot-2.0.0/mongopot/data/test/kafka/ptest3.py +54 -0
  48. mongopot-2.0.0/mongopot/data/test/mongobleed.py +129 -0
  49. mongopot-2.0.0/mongopot/data/test/output_plugins/dshield.py +158 -0
  50. mongopot-2.0.0/mongopot/data/test/output_plugins/graylog.py +52 -0
  51. mongopot-2.0.0/mongopot/data/test/output_plugins/oraclecloud.py +110 -0
  52. mongopot-2.0.0/mongopot/data/test/output_plugins/splunk.py +107 -0
  53. mongopot-2.0.0/mongopot/data/test/redis/redis.bat +2 -0
  54. mongopot-2.0.0/mongopot/data/test/test.py +52 -0
  55. mongopot-2.0.0/mongopot/honeypot.py +119 -0
  56. mongopot-2.0.0/mongopot.egg-info/PKG-INFO +128 -0
  57. mongopot-2.0.0/mongopot.egg-info/SOURCES.txt +85 -0
  58. mongopot-2.0.0/mongopot.egg-info/dependency_links.txt +1 -0
  59. mongopot-2.0.0/mongopot.egg-info/entry_points.txt +2 -0
  60. mongopot-2.0.0/mongopot.egg-info/requires.txt +84 -0
  61. mongopot-2.0.0/mongopot.egg-info/top_level.txt +3 -0
  62. mongopot-2.0.0/output_plugins/README.md +21 -0
  63. mongopot-2.0.0/output_plugins/__init__.py +0 -0
  64. mongopot-2.0.0/output_plugins/couch.py +66 -0
  65. mongopot-2.0.0/output_plugins/datadog.py +77 -0
  66. mongopot-2.0.0/output_plugins/discord.py +115 -0
  67. mongopot-2.0.0/output_plugins/elastic.py +109 -0
  68. mongopot-2.0.0/output_plugins/hpfeed.py +40 -0
  69. mongopot-2.0.0/output_plugins/influx2.py +62 -0
  70. mongopot-2.0.0/output_plugins/jsonlog.py +35 -0
  71. mongopot-2.0.0/output_plugins/kafka.py +54 -0
  72. mongopot-2.0.0/output_plugins/localsyslog.py +68 -0
  73. mongopot-2.0.0/output_plugins/mongodb.py +81 -0
  74. mongopot-2.0.0/output_plugins/mysql.py +201 -0
  75. mongopot-2.0.0/output_plugins/nlcvapi.py +112 -0
  76. mongopot-2.0.0/output_plugins/postgres.py +135 -0
  77. mongopot-2.0.0/output_plugins/redisdb.py +41 -0
  78. mongopot-2.0.0/output_plugins/rethinkdblog.py +38 -0
  79. mongopot-2.0.0/output_plugins/slack.py +59 -0
  80. mongopot-2.0.0/output_plugins/socketlog.py +37 -0
  81. mongopot-2.0.0/output_plugins/sqlite.py +138 -0
  82. mongopot-2.0.0/output_plugins/telegram.py +117 -0
  83. mongopot-2.0.0/output_plugins/textlog.py +44 -0
  84. mongopot-2.0.0/output_plugins/xmpp.py +47 -0
  85. mongopot-2.0.0/setup.cfg +7 -0
  86. 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