mssqlpot 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.
- mssqlpot-2.0.0/CHANGELOG.md +81 -0
- mssqlpot-2.0.0/LICENSE +674 -0
- mssqlpot-2.0.0/MANIFEST.in +9 -0
- mssqlpot-2.0.0/PKG-INFO +151 -0
- mssqlpot-2.0.0/README.md +18 -0
- mssqlpot-2.0.0/core/__init__.py +0 -0
- mssqlpot-2.0.0/core/config.py +50 -0
- mssqlpot-2.0.0/core/logfile.py +74 -0
- mssqlpot-2.0.0/core/output.py +39 -0
- mssqlpot-2.0.0/core/paths.py +53 -0
- mssqlpot-2.0.0/core/protocol.py +143 -0
- mssqlpot-2.0.0/core/tools.py +157 -0
- mssqlpot-2.0.0/honeypot.py +118 -0
- mssqlpot-2.0.0/mssqlpot/__init__.py +25 -0
- mssqlpot-2.0.0/mssqlpot/cli.py +511 -0
- mssqlpot-2.0.0/mssqlpot/data/Dockerfile +56 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/INSTALL.md +399 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/INSTALLWIN.md +410 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/PLUGINS.md +21 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/TODO.md +8 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/datadog/README.md +32 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/discord/README.md +49 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/geoipupdtask.ps1 +270 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/mysql/README.md +176 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/mysql/READMEWIN.md +157 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/mysql/mysql.sql +62 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/postgres/README.md +184 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/postgres/READMEWIN.md +196 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/postgres/postgres.sql +56 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/slack/README.md +68 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/sqlite3/README.md +131 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/sqlite3/READMEWIN.md +123 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/sqlite3/sqlite3.sql +52 -0
- mssqlpot-2.0.0/mssqlpot/data/docs/telegram/README.md +103 -0
- mssqlpot-2.0.0/mssqlpot/data/etc/honeypot.cfg +427 -0
- mssqlpot-2.0.0/mssqlpot/data/etc/honeypot.cfg.base +417 -0
- mssqlpot-2.0.0/mssqlpot/data/test/.gitignore +3 -0
- mssqlpot-2.0.0/mssqlpot/data/test/test.py +59 -0
- mssqlpot-2.0.0/mssqlpot/honeypot.py +118 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/PKG-INFO +151 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/SOURCES.txt +69 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/dependency_links.txt +1 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/entry_points.txt +2 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/requires.txt +155 -0
- mssqlpot-2.0.0/mssqlpot.egg-info/top_level.txt +3 -0
- mssqlpot-2.0.0/output_plugins/README.md +21 -0
- mssqlpot-2.0.0/output_plugins/__init__.py +0 -0
- mssqlpot-2.0.0/output_plugins/couch.py +68 -0
- mssqlpot-2.0.0/output_plugins/datadog.py +74 -0
- mssqlpot-2.0.0/output_plugins/discord.py +125 -0
- mssqlpot-2.0.0/output_plugins/elastic.py +137 -0
- mssqlpot-2.0.0/output_plugins/hpfeed.py +43 -0
- mssqlpot-2.0.0/output_plugins/influx2.py +62 -0
- mssqlpot-2.0.0/output_plugins/jsonlog.py +36 -0
- mssqlpot-2.0.0/output_plugins/kafka.py +57 -0
- mssqlpot-2.0.0/output_plugins/localsyslog.py +66 -0
- mssqlpot-2.0.0/output_plugins/mongodb.py +83 -0
- mssqlpot-2.0.0/output_plugins/mysql.py +201 -0
- mssqlpot-2.0.0/output_plugins/nlcvapi.py +119 -0
- mssqlpot-2.0.0/output_plugins/postgres.py +142 -0
- mssqlpot-2.0.0/output_plugins/redisdb.py +47 -0
- mssqlpot-2.0.0/output_plugins/rethinkdblog.py +46 -0
- mssqlpot-2.0.0/output_plugins/slack.py +85 -0
- mssqlpot-2.0.0/output_plugins/socketlog.py +40 -0
- mssqlpot-2.0.0/output_plugins/sqlite.py +132 -0
- mssqlpot-2.0.0/output_plugins/telegram.py +130 -0
- mssqlpot-2.0.0/output_plugins/textlog.py +37 -0
- mssqlpot-2.0.0/output_plugins/xmpp.py +181 -0
- mssqlpot-2.0.0/setup.cfg +7 -0
- mssqlpot-2.0.0/setup.py +303 -0
|
@@ -0,0 +1,81 @@
|
|
|
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
|
+
* Better error checking if another process is already listening to the same port
|
|
23
|
+
* Better Python 2.x/3.x compatibility
|
|
24
|
+
* Completely rewritten `Dockerfile`, uses hardened images
|
|
25
|
+
|
|
26
|
+
## [1.0.1]
|
|
27
|
+
|
|
28
|
+
### Added in version 1.0.1
|
|
29
|
+
|
|
30
|
+
* Added Discord plugin documentation
|
|
31
|
+
* Added Slack plugin documentation
|
|
32
|
+
* Implemeted a Kafka plugin
|
|
33
|
+
* Reporting disconnection events too
|
|
34
|
+
* Rate limit to the Discord, Slack, and Telegram plugins
|
|
35
|
+
|
|
36
|
+
### Changed in version 1.0.1
|
|
37
|
+
|
|
38
|
+
* Increased the version number
|
|
39
|
+
* Corrected the Docker image version number
|
|
40
|
+
* Removed some duplicated code
|
|
41
|
+
* The RethinkDB output plugin now supports user names
|
|
42
|
+
* Fixed a typo in the Docker section of the installation documentation
|
|
43
|
+
* Got rid of the deprecated function `utcfromtimestamp`
|
|
44
|
+
* Fixed the wrong output method in the RedisDB output plugin
|
|
45
|
+
* Fixed the decoding of user names
|
|
46
|
+
|
|
47
|
+
## [1.0.0]
|
|
48
|
+
|
|
49
|
+
### Added in version 1.0.0
|
|
50
|
+
|
|
51
|
+
* Initial release
|
|
52
|
+
* Implemented the honeypot using the Twisted framework
|
|
53
|
+
* Made the honeypot compatible with Python 3.x
|
|
54
|
+
* Config file support
|
|
55
|
+
* Various command-line options
|
|
56
|
+
* Log rotation
|
|
57
|
+
* Support for the `report_public_ip` config file option
|
|
58
|
+
* A script for starting, stopping, and restarting the honeypot
|
|
59
|
+
* Documentation
|
|
60
|
+
* Output plugin support
|
|
61
|
+
* Output plugins for
|
|
62
|
+
* CouchDB
|
|
63
|
+
* Datadog
|
|
64
|
+
* Discord
|
|
65
|
+
* Elasticsearch
|
|
66
|
+
* HPFeeds
|
|
67
|
+
* InfluxDB 2.0 (Python 3.6+ only)
|
|
68
|
+
* JSON
|
|
69
|
+
* MongoDB
|
|
70
|
+
* MySQL
|
|
71
|
+
* NLCV API
|
|
72
|
+
* PostgeSQL
|
|
73
|
+
* Redis
|
|
74
|
+
* RethinkDB
|
|
75
|
+
* Slack
|
|
76
|
+
* Socket
|
|
77
|
+
* SQLite3
|
|
78
|
+
* Syslog
|
|
79
|
+
* Telegram
|
|
80
|
+
* text
|
|
81
|
+
* XMPP
|