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.
- siphoney-2.0.0/CHANGELOG.md +68 -0
- siphoney-2.0.0/LICENSE +674 -0
- siphoney-2.0.0/MANIFEST.in +8 -0
- siphoney-2.0.0/PKG-INFO +125 -0
- siphoney-2.0.0/README.md +17 -0
- siphoney-2.0.0/core/__init__.py +0 -0
- siphoney-2.0.0/core/config.py +40 -0
- siphoney-2.0.0/core/logfile.py +74 -0
- siphoney-2.0.0/core/output.py +39 -0
- siphoney-2.0.0/core/paths.py +53 -0
- siphoney-2.0.0/core/protocol.py +92 -0
- siphoney-2.0.0/core/tools.py +170 -0
- siphoney-2.0.0/honeypot.py +110 -0
- siphoney-2.0.0/output_plugins/README.md +21 -0
- siphoney-2.0.0/output_plugins/__init__.py +0 -0
- siphoney-2.0.0/output_plugins/couch.py +66 -0
- siphoney-2.0.0/output_plugins/datadog.py +68 -0
- siphoney-2.0.0/output_plugins/discord.py +99 -0
- siphoney-2.0.0/output_plugins/elastic.py +109 -0
- siphoney-2.0.0/output_plugins/hpfeed.py +40 -0
- siphoney-2.0.0/output_plugins/influx2.py +58 -0
- siphoney-2.0.0/output_plugins/jsonlog.py +35 -0
- siphoney-2.0.0/output_plugins/kafka.py +54 -0
- siphoney-2.0.0/output_plugins/localsyslog.py +61 -0
- siphoney-2.0.0/output_plugins/mongodb.py +81 -0
- siphoney-2.0.0/output_plugins/mysql.py +231 -0
- siphoney-2.0.0/output_plugins/nlcvapi.py +111 -0
- siphoney-2.0.0/output_plugins/postgres.py +167 -0
- siphoney-2.0.0/output_plugins/redisdb.py +41 -0
- siphoney-2.0.0/output_plugins/rethinkdblog.py +38 -0
- siphoney-2.0.0/output_plugins/slack.py +44 -0
- siphoney-2.0.0/output_plugins/socketlog.py +37 -0
- siphoney-2.0.0/output_plugins/sqlite.py +171 -0
- siphoney-2.0.0/output_plugins/telegram.py +104 -0
- siphoney-2.0.0/output_plugins/textlog.py +30 -0
- siphoney-2.0.0/output_plugins/xmpp.py +38 -0
- siphoney-2.0.0/setup.cfg +7 -0
- siphoney-2.0.0/setup.py +269 -0
- siphoney-2.0.0/siphoney/__init__.py +24 -0
- siphoney-2.0.0/siphoney/cli.py +508 -0
- siphoney-2.0.0/siphoney/data/Dockerfile +56 -0
- siphoney-2.0.0/siphoney/data/docs/INSTALL.md +431 -0
- siphoney-2.0.0/siphoney/data/docs/INSTALLWIN.md +439 -0
- siphoney-2.0.0/siphoney/data/docs/TODO.md +8 -0
- siphoney-2.0.0/siphoney/data/docs/datadog/README.md +32 -0
- siphoney-2.0.0/siphoney/data/docs/discord/README.md +58 -0
- siphoney-2.0.0/siphoney/data/docs/geoipupdtask.ps1 +270 -0
- siphoney-2.0.0/siphoney/data/docs/mysql/README.md +175 -0
- siphoney-2.0.0/siphoney/data/docs/mysql/READMEWIN.md +157 -0
- siphoney-2.0.0/siphoney/data/docs/mysql/mysql.sql +173 -0
- siphoney-2.0.0/siphoney/data/docs/postgres/README.md +184 -0
- siphoney-2.0.0/siphoney/data/docs/postgres/READMEWIN.md +196 -0
- siphoney-2.0.0/siphoney/data/docs/postgres/postgres.sql +138 -0
- siphoney-2.0.0/siphoney/data/docs/slack/README.md +68 -0
- siphoney-2.0.0/siphoney/data/docs/sqlite3/README.md +130 -0
- siphoney-2.0.0/siphoney/data/docs/sqlite3/READMEWIN.md +122 -0
- siphoney-2.0.0/siphoney/data/docs/sqlite3/sqlite3.sql +134 -0
- siphoney-2.0.0/siphoney/data/docs/telegram/README.md +103 -0
- siphoney-2.0.0/siphoney/data/etc/honeypot.cfg.base +418 -0
- siphoney-2.0.0/siphoney/data/test/.gitignore +5 -0
- siphoney-2.0.0/siphoney/data/test/README.md +50 -0
- siphoney-2.0.0/siphoney/data/test/baseline +187 -0
- siphoney-2.0.0/siphoney/data/test/develop/.gitignore +2 -0
- siphoney-2.0.0/siphoney/data/test/develop/SIPHoney.rtf +192 -0
- siphoney-2.0.0/siphoney/data/test/develop/announce1.txt +16 -0
- siphoney-2.0.0/siphoney/data/test/develop/announce2.txt +9 -0
- siphoney-2.0.0/siphoney/data/test/develop/couchdb/couchdb.bat +2 -0
- siphoney-2.0.0/siphoney/data/test/develop/hpfeeds/docker-compose.yml +13 -0
- siphoney-2.0.0/siphoney/data/test/develop/hpfeeds/hpfeeds.bat +2 -0
- siphoney-2.0.0/siphoney/data/test/develop/kafka/ctest2.py +39 -0
- siphoney-2.0.0/siphoney/data/test/develop/kafka/docker-compose.yml +22 -0
- siphoney-2.0.0/siphoney/data/test/develop/kafka/ptest3.py +58 -0
- siphoney-2.0.0/siphoney/data/test/develop/output_plugins/dshield.py +158 -0
- siphoney-2.0.0/siphoney/data/test/develop/output_plugins/graylog.py +52 -0
- siphoney-2.0.0/siphoney/data/test/develop/output_plugins/oraclecloud.py +110 -0
- siphoney-2.0.0/siphoney/data/test/develop/output_plugins/splunk.py +107 -0
- siphoney-2.0.0/siphoney/data/test/develop/redis/redis.bat +2 -0
- siphoney-2.0.0/siphoney/data/test/develop/rethinkdb/rethinkdb.bat +4 -0
- siphoney-2.0.0/siphoney/data/test/test.ps1 +22 -0
- siphoney-2.0.0/siphoney/data/test/test.py +96 -0
- siphoney-2.0.0/siphoney/data/test/test.sh +7 -0
- siphoney-2.0.0/siphoney/honeypot.py +110 -0
- siphoney-2.0.0/siphoney.egg-info/PKG-INFO +125 -0
- siphoney-2.0.0/siphoney.egg-info/SOURCES.txt +87 -0
- siphoney-2.0.0/siphoney.egg-info/dependency_links.txt +1 -0
- siphoney-2.0.0/siphoney.egg-info/entry_points.txt +2 -0
- siphoney-2.0.0/siphoney.egg-info/requires.txt +85 -0
- 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
|