mempot 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 (72) hide show
  1. mempot-2.0.0/CHANGELOG.md +101 -0
  2. mempot-2.0.0/LICENSE +674 -0
  3. mempot-2.0.0/MANIFEST.in +9 -0
  4. mempot-2.0.0/PKG-INFO +148 -0
  5. mempot-2.0.0/README.md +15 -0
  6. mempot-2.0.0/core/__init__.py +0 -0
  7. mempot-2.0.0/core/config.py +50 -0
  8. mempot-2.0.0/core/logfile.py +74 -0
  9. mempot-2.0.0/core/output.py +39 -0
  10. mempot-2.0.0/core/paths.py +53 -0
  11. mempot-2.0.0/core/protocol.py +460 -0
  12. mempot-2.0.0/core/tools.py +168 -0
  13. mempot-2.0.0/honeypot.py +118 -0
  14. mempot-2.0.0/mempot/__init__.py +25 -0
  15. mempot-2.0.0/mempot/cli.py +513 -0
  16. mempot-2.0.0/mempot/data/Dockerfile +56 -0
  17. mempot-2.0.0/mempot/data/docs/INSTALL.md +426 -0
  18. mempot-2.0.0/mempot/data/docs/INSTALLWIN.md +437 -0
  19. mempot-2.0.0/mempot/data/docs/PLUGINS.md +21 -0
  20. mempot-2.0.0/mempot/data/docs/TODO.md +17 -0
  21. mempot-2.0.0/mempot/data/docs/datadog/README.md +32 -0
  22. mempot-2.0.0/mempot/data/docs/discord/README.md +49 -0
  23. mempot-2.0.0/mempot/data/docs/mysql/README.md +176 -0
  24. mempot-2.0.0/mempot/data/docs/mysql/READMEWIN.md +157 -0
  25. mempot-2.0.0/mempot/data/docs/mysql/mysql.sql +60 -0
  26. mempot-2.0.0/mempot/data/docs/postgres/README.md +184 -0
  27. mempot-2.0.0/mempot/data/docs/postgres/READMEWIN.md +196 -0
  28. mempot-2.0.0/mempot/data/docs/postgres/postgres.sql +58 -0
  29. mempot-2.0.0/mempot/data/docs/slack/README.md +68 -0
  30. mempot-2.0.0/mempot/data/docs/sqlite3/README.md +131 -0
  31. mempot-2.0.0/mempot/data/docs/sqlite3/READMEWIN.md +123 -0
  32. mempot-2.0.0/mempot/data/docs/sqlite3/sqlite3.sql +58 -0
  33. mempot-2.0.0/mempot/data/docs/telegram/README.md +103 -0
  34. mempot-2.0.0/mempot/data/etc/honeypot.cfg +424 -0
  35. mempot-2.0.0/mempot/data/etc/honeypot.cfg.base +412 -0
  36. mempot-2.0.0/mempot/data/test/.gitignore +6 -0
  37. mempot-2.0.0/mempot/data/test/README.md +39 -0
  38. mempot-2.0.0/mempot/data/test/baseline +361 -0
  39. mempot-2.0.0/mempot/data/test/input +215 -0
  40. mempot-2.0.0/mempot/data/test/test.py +74 -0
  41. mempot-2.0.0/mempot/honeypot.py +118 -0
  42. mempot-2.0.0/mempot.egg-info/PKG-INFO +148 -0
  43. mempot-2.0.0/mempot.egg-info/SOURCES.txt +71 -0
  44. mempot-2.0.0/mempot.egg-info/dependency_links.txt +1 -0
  45. mempot-2.0.0/mempot.egg-info/entry_points.txt +2 -0
  46. mempot-2.0.0/mempot.egg-info/requires.txt +155 -0
  47. mempot-2.0.0/mempot.egg-info/top_level.txt +3 -0
  48. mempot-2.0.0/output_plugins/README.md +21 -0
  49. mempot-2.0.0/output_plugins/__init__.py +0 -0
  50. mempot-2.0.0/output_plugins/couch.py +68 -0
  51. mempot-2.0.0/output_plugins/datadog.py +74 -0
  52. mempot-2.0.0/output_plugins/discord.py +125 -0
  53. mempot-2.0.0/output_plugins/elastic.py +137 -0
  54. mempot-2.0.0/output_plugins/hpfeed.py +43 -0
  55. mempot-2.0.0/output_plugins/influx2.py +60 -0
  56. mempot-2.0.0/output_plugins/jsonlog.py +36 -0
  57. mempot-2.0.0/output_plugins/kafka.py +57 -0
  58. mempot-2.0.0/output_plugins/localsyslog.py +64 -0
  59. mempot-2.0.0/output_plugins/mongodb.py +83 -0
  60. mempot-2.0.0/output_plugins/mysql.py +214 -0
  61. mempot-2.0.0/output_plugins/nlcvapi.py +119 -0
  62. mempot-2.0.0/output_plugins/postgres.py +166 -0
  63. mempot-2.0.0/output_plugins/redisdb.py +48 -0
  64. mempot-2.0.0/output_plugins/rethinkdblog.py +46 -0
  65. mempot-2.0.0/output_plugins/slack.py +83 -0
  66. mempot-2.0.0/output_plugins/socketlog.py +40 -0
  67. mempot-2.0.0/output_plugins/sqlite.py +155 -0
  68. mempot-2.0.0/output_plugins/telegram.py +130 -0
  69. mempot-2.0.0/output_plugins/textlog.py +35 -0
  70. mempot-2.0.0/output_plugins/xmpp.py +181 -0
  71. mempot-2.0.0/setup.cfg +7 -0
  72. mempot-2.0.0/setup.py +303 -0
@@ -0,0 +1,101 @@
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
+ * `.gitlab-ci.yml` file to scan for secrets
14
+
15
+ ### Changed in version 2.0.0
16
+
17
+ * Increased the version number
18
+ * Made the test script compatible with Python 2.x
19
+ * Got rid of `getlist()`
20
+ * Updated the documentation with information how to start the honeypot at boot
21
+ time
22
+ * Fixed bugs in the Discord, PostgreSQL, Slack, and Telegram output plugins
23
+ * Better Python 2.x/3.x compatibility
24
+ * Completely rewritten `Dockerfile`, uses hardened images
25
+ * Better error checking if another process is already listening to the same port
26
+
27
+ ## [1.0.1]
28
+
29
+ ### Added in version 1.0.1
30
+
31
+ * Documentation for the Slack output plugin
32
+ * Documentation explaining how to test the honeypot
33
+ * Rate limiting to the Slack plugin
34
+
35
+ ### Changed in version 1.0.1
36
+
37
+ * Increased the version number
38
+ * Fixed a typo in the Docker installation documentation
39
+ * Got rid of the deprecated `utcfromtimestamp` function
40
+ * Fixed wrong output method in the RedisDB output plugin
41
+ * Fixed a bug that prevented the commands `set`, `add`,
42
+ `replace`, `append`, and `prepend` from working
43
+ * Fixed character encoding in Python 2.x
44
+ * Encoding non-printable characters to hex
45
+
46
+ ## [1.0.0]
47
+
48
+ ### Added in version 1.0.0
49
+
50
+ * Initial release
51
+ * Implemented the honeypot using the Twisted framework
52
+ * Made the honeypot compatible with Python 3.x
53
+ * Config file support
54
+ * Various command-line options
55
+ * Log rotation
56
+ * Support for the `report_public_ip` config file option
57
+ * A script for starting, stopping, and restarting the honeypot
58
+ * Documentation
59
+ * Implemented emulation of the following commands
60
+ * add
61
+ * append
62
+ * cache_memlimit
63
+ * decr
64
+ * delete
65
+ * flush_all
66
+ * get
67
+ * incr
68
+ * prepend
69
+ * quit
70
+ * replace
71
+ * stats
72
+ * stats cachedump
73
+ * stats settings
74
+ * set
75
+ * touch
76
+ * verbosity
77
+ * version
78
+ * Created a testing script
79
+ * Output plugin support
80
+ * Output plugins for
81
+ * CouchDB
82
+ * Datadog
83
+ * Discord
84
+ * Elasticsearch
85
+ * HPFeeds
86
+ * InfluxDB 2.0 (Python 3.6+ only)
87
+ * JSON
88
+ * Kafka
89
+ * MongoDB
90
+ * MySQL
91
+ * NLCV API
92
+ * PostgeSQL
93
+ * Redis
94
+ * RethinkDB
95
+ * Slack
96
+ * Socket
97
+ * SQLite3
98
+ * Syslog
99
+ * Telegram
100
+ * text
101
+ * XMPP