siphoney 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 (88) hide show
  1. siphoney-2.0.0/CHANGELOG.md +68 -0
  2. siphoney-2.0.0/LICENSE +674 -0
  3. siphoney-2.0.0/MANIFEST.in +8 -0
  4. siphoney-2.0.0/PKG-INFO +125 -0
  5. siphoney-2.0.0/README.md +17 -0
  6. siphoney-2.0.0/core/__init__.py +0 -0
  7. siphoney-2.0.0/core/config.py +40 -0
  8. siphoney-2.0.0/core/logfile.py +74 -0
  9. siphoney-2.0.0/core/output.py +39 -0
  10. siphoney-2.0.0/core/paths.py +53 -0
  11. siphoney-2.0.0/core/protocol.py +92 -0
  12. siphoney-2.0.0/core/tools.py +170 -0
  13. siphoney-2.0.0/honeypot.py +110 -0
  14. siphoney-2.0.0/output_plugins/README.md +21 -0
  15. siphoney-2.0.0/output_plugins/__init__.py +0 -0
  16. siphoney-2.0.0/output_plugins/couch.py +66 -0
  17. siphoney-2.0.0/output_plugins/datadog.py +68 -0
  18. siphoney-2.0.0/output_plugins/discord.py +99 -0
  19. siphoney-2.0.0/output_plugins/elastic.py +109 -0
  20. siphoney-2.0.0/output_plugins/hpfeed.py +40 -0
  21. siphoney-2.0.0/output_plugins/influx2.py +58 -0
  22. siphoney-2.0.0/output_plugins/jsonlog.py +35 -0
  23. siphoney-2.0.0/output_plugins/kafka.py +54 -0
  24. siphoney-2.0.0/output_plugins/localsyslog.py +61 -0
  25. siphoney-2.0.0/output_plugins/mongodb.py +81 -0
  26. siphoney-2.0.0/output_plugins/mysql.py +231 -0
  27. siphoney-2.0.0/output_plugins/nlcvapi.py +111 -0
  28. siphoney-2.0.0/output_plugins/postgres.py +167 -0
  29. siphoney-2.0.0/output_plugins/redisdb.py +41 -0
  30. siphoney-2.0.0/output_plugins/rethinkdblog.py +38 -0
  31. siphoney-2.0.0/output_plugins/slack.py +44 -0
  32. siphoney-2.0.0/output_plugins/socketlog.py +37 -0
  33. siphoney-2.0.0/output_plugins/sqlite.py +171 -0
  34. siphoney-2.0.0/output_plugins/telegram.py +104 -0
  35. siphoney-2.0.0/output_plugins/textlog.py +30 -0
  36. siphoney-2.0.0/output_plugins/xmpp.py +38 -0
  37. siphoney-2.0.0/setup.cfg +7 -0
  38. siphoney-2.0.0/setup.py +269 -0
  39. siphoney-2.0.0/siphoney/__init__.py +24 -0
  40. siphoney-2.0.0/siphoney/cli.py +508 -0
  41. siphoney-2.0.0/siphoney/data/Dockerfile +56 -0
  42. siphoney-2.0.0/siphoney/data/docs/INSTALL.md +431 -0
  43. siphoney-2.0.0/siphoney/data/docs/INSTALLWIN.md +439 -0
  44. siphoney-2.0.0/siphoney/data/docs/TODO.md +8 -0
  45. siphoney-2.0.0/siphoney/data/docs/datadog/README.md +32 -0
  46. siphoney-2.0.0/siphoney/data/docs/discord/README.md +58 -0
  47. siphoney-2.0.0/siphoney/data/docs/geoipupdtask.ps1 +270 -0
  48. siphoney-2.0.0/siphoney/data/docs/mysql/README.md +175 -0
  49. siphoney-2.0.0/siphoney/data/docs/mysql/READMEWIN.md +157 -0
  50. siphoney-2.0.0/siphoney/data/docs/mysql/mysql.sql +173 -0
  51. siphoney-2.0.0/siphoney/data/docs/postgres/README.md +184 -0
  52. siphoney-2.0.0/siphoney/data/docs/postgres/READMEWIN.md +196 -0
  53. siphoney-2.0.0/siphoney/data/docs/postgres/postgres.sql +138 -0
  54. siphoney-2.0.0/siphoney/data/docs/slack/README.md +68 -0
  55. siphoney-2.0.0/siphoney/data/docs/sqlite3/README.md +130 -0
  56. siphoney-2.0.0/siphoney/data/docs/sqlite3/READMEWIN.md +122 -0
  57. siphoney-2.0.0/siphoney/data/docs/sqlite3/sqlite3.sql +134 -0
  58. siphoney-2.0.0/siphoney/data/docs/telegram/README.md +103 -0
  59. siphoney-2.0.0/siphoney/data/etc/honeypot.cfg.base +418 -0
  60. siphoney-2.0.0/siphoney/data/test/.gitignore +5 -0
  61. siphoney-2.0.0/siphoney/data/test/README.md +50 -0
  62. siphoney-2.0.0/siphoney/data/test/baseline +187 -0
  63. siphoney-2.0.0/siphoney/data/test/develop/.gitignore +2 -0
  64. siphoney-2.0.0/siphoney/data/test/develop/SIPHoney.rtf +192 -0
  65. siphoney-2.0.0/siphoney/data/test/develop/announce1.txt +16 -0
  66. siphoney-2.0.0/siphoney/data/test/develop/announce2.txt +9 -0
  67. siphoney-2.0.0/siphoney/data/test/develop/couchdb/couchdb.bat +2 -0
  68. siphoney-2.0.0/siphoney/data/test/develop/hpfeeds/docker-compose.yml +13 -0
  69. siphoney-2.0.0/siphoney/data/test/develop/hpfeeds/hpfeeds.bat +2 -0
  70. siphoney-2.0.0/siphoney/data/test/develop/kafka/ctest2.py +39 -0
  71. siphoney-2.0.0/siphoney/data/test/develop/kafka/docker-compose.yml +22 -0
  72. siphoney-2.0.0/siphoney/data/test/develop/kafka/ptest3.py +58 -0
  73. siphoney-2.0.0/siphoney/data/test/develop/output_plugins/dshield.py +158 -0
  74. siphoney-2.0.0/siphoney/data/test/develop/output_plugins/graylog.py +52 -0
  75. siphoney-2.0.0/siphoney/data/test/develop/output_plugins/oraclecloud.py +110 -0
  76. siphoney-2.0.0/siphoney/data/test/develop/output_plugins/splunk.py +107 -0
  77. siphoney-2.0.0/siphoney/data/test/develop/redis/redis.bat +2 -0
  78. siphoney-2.0.0/siphoney/data/test/develop/rethinkdb/rethinkdb.bat +4 -0
  79. siphoney-2.0.0/siphoney/data/test/test.ps1 +22 -0
  80. siphoney-2.0.0/siphoney/data/test/test.py +96 -0
  81. siphoney-2.0.0/siphoney/data/test/test.sh +7 -0
  82. siphoney-2.0.0/siphoney/honeypot.py +110 -0
  83. siphoney-2.0.0/siphoney.egg-info/PKG-INFO +125 -0
  84. siphoney-2.0.0/siphoney.egg-info/SOURCES.txt +87 -0
  85. siphoney-2.0.0/siphoney.egg-info/dependency_links.txt +1 -0
  86. siphoney-2.0.0/siphoney.egg-info/entry_points.txt +2 -0
  87. siphoney-2.0.0/siphoney.egg-info/requires.txt +85 -0
  88. siphoney-2.0.0/siphoney.egg-info/top_level.txt +3 -0
@@ -0,0 +1,68 @@
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
+ * Sanity checks for the `blacklist` key in the config file.
15
+ * Documentation for installing the honeypot on Windows.
16
+
17
+ ### Changed in version 2.0.0
18
+
19
+ * Increased the version number
20
+ * Corrected the port exposed in the `Dockerfile`
21
+ * Got rid of `getlist()`
22
+ * Improved the XMPP plugin to make it compatible with Python 2.x
23
+ * Fixed the honeypot name in the Discord documentation and in the HPFeeds and
24
+ Kafka plugins
25
+ * Updated the documentation with information how to start the honeypot at boot
26
+ time
27
+ * Fixed a bug in the PostgreSQL output plugin
28
+ * Switched to a hardened Docker image for Python.
29
+ * The depenency installation now allows you to install only the dependencies for
30
+ the modules that you actually intend to use, instead of all of them.
31
+ * The program version now exists in a single place.
32
+
33
+ ## [1.0.0]
34
+
35
+ ### Added in version 1.0.0
36
+
37
+ * Initial release
38
+ * Implemented the honeypot using the Twisted framework
39
+ * Made the honeypot compatible with Python 3.x
40
+ * Config file support
41
+ * Various command-line options
42
+ * Log rotation
43
+ * Support for the `report_public_ip` config file option
44
+ * A script for starting, stopping, and restarting the honeypot
45
+ * Documentation
46
+ * Output plugin support
47
+ * Output plugins for
48
+ * CouchDB
49
+ * Datadog
50
+ * Discord
51
+ * Elasticsearch
52
+ * HPFeeds
53
+ * InfluxDB 2.0
54
+ * JSON
55
+ * Kafka
56
+ * MongoDB
57
+ * MySQL
58
+ * NLCV API
59
+ * PostgeSQL
60
+ * Redis
61
+ * RethinkDB
62
+ * Slack
63
+ * Socket
64
+ * SQLite3
65
+ * Syslog
66
+ * Telegram
67
+ * text
68
+ * XMPP