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