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