redispot 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 (70) hide show
  1. redispot-2.0.0/CHANGELOG.md +75 -0
  2. redispot-2.0.0/LICENSE +674 -0
  3. redispot-2.0.0/MANIFEST.in +9 -0
  4. redispot-2.0.0/PKG-INFO +159 -0
  5. redispot-2.0.0/README.md +26 -0
  6. redispot-2.0.0/core/__init__.py +0 -0
  7. redispot-2.0.0/core/config.py +50 -0
  8. redispot-2.0.0/core/logfile.py +74 -0
  9. redispot-2.0.0/core/output.py +39 -0
  10. redispot-2.0.0/core/paths.py +53 -0
  11. redispot-2.0.0/core/protocol.py +176 -0
  12. redispot-2.0.0/core/tools.py +170 -0
  13. redispot-2.0.0/honeypot.py +112 -0
  14. redispot-2.0.0/output_plugins/README.md +21 -0
  15. redispot-2.0.0/output_plugins/__init__.py +0 -0
  16. redispot-2.0.0/output_plugins/couch.py +68 -0
  17. redispot-2.0.0/output_plugins/datadog.py +74 -0
  18. redispot-2.0.0/output_plugins/discord.py +138 -0
  19. redispot-2.0.0/output_plugins/elastic.py +137 -0
  20. redispot-2.0.0/output_plugins/hpfeed.py +43 -0
  21. redispot-2.0.0/output_plugins/influx2.py +64 -0
  22. redispot-2.0.0/output_plugins/jsonlog.py +36 -0
  23. redispot-2.0.0/output_plugins/kafka.py +57 -0
  24. redispot-2.0.0/output_plugins/localsyslog.py +66 -0
  25. redispot-2.0.0/output_plugins/mongodb.py +83 -0
  26. redispot-2.0.0/output_plugins/mysql.py +213 -0
  27. redispot-2.0.0/output_plugins/nlcvapi.py +119 -0
  28. redispot-2.0.0/output_plugins/postgres.py +157 -0
  29. redispot-2.0.0/output_plugins/redisdb.py +47 -0
  30. redispot-2.0.0/output_plugins/rethinkdblog.py +46 -0
  31. redispot-2.0.0/output_plugins/slack.py +93 -0
  32. redispot-2.0.0/output_plugins/socketlog.py +40 -0
  33. redispot-2.0.0/output_plugins/sqlite.py +144 -0
  34. redispot-2.0.0/output_plugins/telegram.py +141 -0
  35. redispot-2.0.0/output_plugins/textlog.py +46 -0
  36. redispot-2.0.0/output_plugins/xmpp.py +192 -0
  37. redispot-2.0.0/redispot/__init__.py +25 -0
  38. redispot-2.0.0/redispot/cli.py +511 -0
  39. redispot-2.0.0/redispot/data/Dockerfile +56 -0
  40. redispot-2.0.0/redispot/data/docs/INSTALL.md +398 -0
  41. redispot-2.0.0/redispot/data/docs/INSTALLWIN.md +409 -0
  42. redispot-2.0.0/redispot/data/docs/PLUGINS.md +21 -0
  43. redispot-2.0.0/redispot/data/docs/TODO.md +11 -0
  44. redispot-2.0.0/redispot/data/docs/datadog/README.md +32 -0
  45. redispot-2.0.0/redispot/data/docs/discord/README.md +58 -0
  46. redispot-2.0.0/redispot/data/docs/geoipupdtask.ps1 +270 -0
  47. redispot-2.0.0/redispot/data/docs/mysql/README.md +176 -0
  48. redispot-2.0.0/redispot/data/docs/mysql/READMEWIN.md +157 -0
  49. redispot-2.0.0/redispot/data/docs/mysql/mysql.sql +85 -0
  50. redispot-2.0.0/redispot/data/docs/postgres/README.md +184 -0
  51. redispot-2.0.0/redispot/data/docs/postgres/READMEWIN.md +196 -0
  52. redispot-2.0.0/redispot/data/docs/postgres/postgres.sql +73 -0
  53. redispot-2.0.0/redispot/data/docs/slack/README.md +68 -0
  54. redispot-2.0.0/redispot/data/docs/sqlite3/README.md +131 -0
  55. redispot-2.0.0/redispot/data/docs/sqlite3/READMEWIN.md +123 -0
  56. redispot-2.0.0/redispot/data/docs/sqlite3/sqlite3.sql +69 -0
  57. redispot-2.0.0/redispot/data/docs/telegram/README.md +103 -0
  58. redispot-2.0.0/redispot/data/etc/honeypot.cfg +419 -0
  59. redispot-2.0.0/redispot/data/etc/honeypot.cfg.base +411 -0
  60. redispot-2.0.0/redispot/data/test/.gitignore +3 -0
  61. redispot-2.0.0/redispot/data/test/test.py +48 -0
  62. redispot-2.0.0/redispot/honeypot.py +112 -0
  63. redispot-2.0.0/redispot.egg-info/PKG-INFO +159 -0
  64. redispot-2.0.0/redispot.egg-info/SOURCES.txt +69 -0
  65. redispot-2.0.0/redispot.egg-info/dependency_links.txt +1 -0
  66. redispot-2.0.0/redispot.egg-info/entry_points.txt +2 -0
  67. redispot-2.0.0/redispot.egg-info/requires.txt +155 -0
  68. redispot-2.0.0/redispot.egg-info/top_level.txt +3 -0
  69. redispot-2.0.0/setup.cfg +7 -0
  70. redispot-2.0.0/setup.py +303 -0
@@ -0,0 +1,75 @@
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
+ * Got rid of `getlist()`
19
+ * Updated the documentation with information how to start the honeypot at boot
20
+ time
21
+ * Fixed bugs in the Discord, PostgreSQL, Slack, and Telegram output plugins
22
+ * Fixed a bug in the reporting (`ip` was referenced before being determined)
23
+ * Better error checking if another process is already listening to the same port
24
+ * Better Python 2.x/3.x compatibility
25
+ * Completely rewritten `Dockerfile`, uses hardened images
26
+
27
+ ## [1.0.1]
28
+
29
+ ### Added in version 1.0.1
30
+
31
+ * Rate limiting to the Slack plugin
32
+
33
+ ### Changed in version 1.0.1
34
+
35
+ * Corrected the SQlite3 database schema
36
+ * Improved the report format of several output plugins
37
+ * Fixed a bug with single-word commands not being logged
38
+ * Improved the encoding of non-ASCII input
39
+
40
+ ## [1.0.0]
41
+
42
+ ### Added in version 1.0.0
43
+
44
+ * Initial release
45
+ * Implemented the honeypot using the Twisted framework
46
+ * Made the honeypot compatible with Python 3.x
47
+ * Config file support
48
+ * Various command-line options
49
+ * Log rotation
50
+ * Support for the `report_public_ip` config file option
51
+ * A script for starting, stopping, and restarting the honeypot
52
+ * Documentation
53
+ * Output plugin support
54
+ * Output plugins for
55
+ * CouchDB
56
+ * Datadog
57
+ * Discord
58
+ * Elasticsearch
59
+ * HPFeeds
60
+ * InfluxDB 2.0 (Python 3.6+ only)
61
+ * JSON
62
+ * Kafka
63
+ * MongoDB
64
+ * MySQL
65
+ * NLCV API
66
+ * PostgeSQL
67
+ * Redis
68
+ * RethinkDB
69
+ * Slack
70
+ * Socket
71
+ * SQLite3
72
+ * Syslog
73
+ * Telegram
74
+ * text
75
+ * XMPP